function HideDIV(d) {
  document.getElementById(d).style.display = "none";
  document.getElementById(d).style.zIndex = -100;
}
function DisplayDIV(d) {
  document.getElementById(d).style.display = "block";
  document.getElementById(d).style.zIndex = 100;
}

$(document).ready(function(){
 $("#emailsignup1").click(function(){
  document.location.href="/newsletter-signup.php";
 });
 $("#emailsignup1").mouseover(function(){
  $("#emailsignup1").css('cursor','hand');
 });
/*  $("#emailsignup").mouseover(function(){
    $("#emailsignup1").hide();
    $("#emailsignup2").show();
  });
  $("#emailsignup").mouseout(function(){
    $("#emailsignup2").hide();
    $("#emailsignup1").show();
    $("#sgnup").val('Enter your e-mail address.');
    document.getElementById("g").focus();
  });
*/
});

function signupFocus(){
 if ($("#sgnup").val() == 'Enter your e-mail address.')
   $("#sgnup").val('');
}