$(document).ready(function(){

	var name = $("#name").attr("value");
	var email = $("#email").attr("value");
	
	$("#name").focus(function () {
		if(name == $("#name").attr("value")){
			$("#name").attr("value","");
		}
	});

	$("#name").blur(function () {
		if($("#name").attr("value") == ""){
			$("#name").attr("value", name);
		}
	});

	$("#email").focus(function () {
		if(email == $("#email").attr("value")){
			$("#email").attr("value","");
		}
	});

	$("#email").blur(function () { 
		if($("#email").attr("value") == ""){
			$("#email").attr("value", email);
		}
	});

	$("#submit").click(function () { 

		if(email != $("#email").attr("value") && name != $("#name").attr("value")){
			$.post("http://www.pineberry.com/contact.php", { name: $("#name").attr("value"), email: $("#email").attr("value"), href: window.location.href } );
			$("#contact").html("<div><p class=\"sent\">Vi kontaktar dej så snart som möjligt.</p></div>");
		}
		return false;

	});

	$("#submit_en").click(function () { 

		if(email != $("#email").attr("value") && name != $("#name").attr("value")){
			$.post("http://www.pineberry.com/contact.php", { name: $("#name").attr("value"), email: $("#email").attr("value"), href: window.location.href } );
			$("#contact").html("<div><p class=\"sent\">We will contact you as soon as possible.</p></div>");
		}
		return false;

	});

});
