// Default JS Content - Do Not Delete

if(!document.location.href.match(/hands-oncms/)){
try{

       parent.document.title = document.title;

       if(parent==window){

              undefinedfunction();

       }

       parent.lastURL = '#'+document.location.href.replace(/^.*\.com/,''); // Stop it for reloading the page twice

       parent.document.location.href = '/f.html#'+document.location.href.replace(/^.*\.com/,'');

}catch(e){

       window.document.location.replace(document.location.href.replace(/\.com/,".com/f.html#"));

}
}

$(document).ready(function(){
  $('#Email').focus(function(){
    $(this).css('font-style','normal').css('color','#000');
    if(this.value=='your e-mail')this.value='';
  }).blur(function(){
    if(this.value==''){
      this.value='your e-mail';
      $(this).css('font-style','italic').css('color','#a0a0a0');
    }
  }).blur();
});