$(document).ready(function(){
	
	$("#sendmail").click(function(){
	
		var valid = '';
		var isr = ' kr&auml;vs.';
		var mail = $("#mail").val();
		
		if (!mail.match(/^([a-z0-9._-]+@[a-z0-9._-]+\.[a-z]{2,4}$)/i)) {
			valid += '<br />En giltig e-post'+isr;
		}

		if (valid!='') {
			$("#response").fadeIn("slow");
			$("#response").html("Fel:"+valid);
		}
		else {
			var datastr ='mail=' + mail;
			$("#response").css("display", "block");
			$("#response").html("Sparar email.... ");
			$("#response").fadeIn("slow");
			setTimeout("send('"+datastr+"')",2000);
		}
		return false;
		
	});
	
	
});

function send(datastr){
	$.ajax({	
		type: "POST",
		url: "http://www.mediesverige.se/wordpress/wp-content/themes/reklamsverige/assets/php/save.php",
		data: datastr,
		cache: false,
		success: function(html){
		$("#response").fadeIn("slow");
		$("#response").html(html);
		setTimeout('$("#response").fadeOut("slow")',2000);
	}
	});
}
