$(document).ready(function(){

var hash_id = document.location.hash.substring(1);

if(hash_id=="delete_email")
{
	alert("Twój adres e-mail został usunięty z naszej bazy.")
}





$("#form_hero_cms").submit(function(){
	var error_form = false;
	var emailReg = /^([\w-\.]+@([\w-]+\.)+[\w-]{2,4})?$/;
  	var mail = $("#hero_input").val();
  				
		if(mail=='')
		{
		$('#hero_info_1').fadeIn(400).delay(1500).fadeOut(400);
		error_form = true;
		}
		else if(!emailReg.test(mail))
		{	
		error_form = true;
		$('#hero_info_2').fadeIn(400).delay(1500).fadeOut(400);
		}
		if(error_form == false)
      {
		$.post("http://www.panda.trzebnica.pl/hero-cms/includes/newsletter_signin.php",{f_mail: mail},function(data)
      	{
      	if(data==1)
      	{
      	$('#hero_info_3').fadeIn(400).delay(1500).fadeOut(400);
      	}
      	else
      	{
      	$('#hero_info_4').fadeIn(400);
      	}
      });
		}

return false;
});

$("#hero_input").click(function()
{
		if($(this).val()=="Twój adres e-mail")
		{
		$(this).val("");
		}

});

});
