$(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=='')
		{
		alert("Proszę podać adres e-mail.");
		error_form = true;
		}
		else if(!emailReg.test(mail))
		{	
		error_form = true;
		alert("Niepoprawny adres e-mail.");
		}
		if(error_form == false)
      {
		$.post("http://sektor3.wroclaw.pl/hero-cms/includes/newsletter_signin.php",{f_mail: mail},function(data)
      	{
      	if(data==1)
      	{
      	alert("Taki adres już istnieje.");
      	}
      	else
      	{
      	alert("Adres został dodany.");
      	}
      });
		}

return false;
});

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

});

});
