jQuery(function(){
	jQuery("#submit").click(function(){ submitForm(); });
});

function submitForm(){
	jQuery.post('http://www.eurosealwindows.com/free-estimate', {
		'contact-form': true,
		'name': jQuery("#name").val(),
		'email': jQuery("#email").val(),
		'phone': jQuery("#phone").val(),
		'alternate': jQuery("#alternate").val(),
		'address': jQuery("#address").val(),
		'city': jQuery("#city").val(),
		'windows': jQuery("#windows").val(),
		'doors': jQuery("#doors").val(),
		'time': jQuery("#time").val()
	}, function(data){
		if (data == true)
			thankYou();
		else
			alert(data);
	});
}

function thankYou(){
	jQuery("h1").css('background-image', 'url("' + images + '/thankyou_title.png")');
	jQuery("h2").remove();
	jQuery("form").remove();
	jQuery("#thankyou").show();
}
