$(function() {

$(".frmShdwSubmit").click(function() {
	var email = $(".frmShdwTopRt .email").val();
	if (email == "" || email == "your@email.com") {
    return false;
  }

		var dataString = 'email='+ email;
		
		$.ajax({
      type: "POST",
      url: "signup.php",
      data: dataString,
      success: function() {
        $('#myForm').html("<div id='message'></div>");
        $('#myForm').html("<h2>Thanks for the interest!</h2>")
        .append("<p>We will be in touch when illog reaches beta.</p>")
        .hide()
        .fadeIn(1500, function() {
          $('#myForm').append("<span class='sorta_funny'>(oh, and remember to wash your hands)</span>");
        });
      }
     });
    return false;
});
});