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


function submitContactForm()
{
	jQuery.post('http://www.greenshieldwindows.com/winter-wonderland-sale/', {
		'contact': 'true',
		'firstname': jQuery("#sale-firstname").val(),
		'lastname': jQuery("#sale-lastname").val(),
		'email': jQuery("#sale-email").val(),
		'phone': jQuery("#sale-phone").val(),
		'comments': jQuery("#sale-comments").val()
	}, function(data){
		if(data == true)
			jQuery("#body form").html('<h3>Questions or Comments</h3><p>Thank you for your email! We\'ll get back to you shortly!</p>');
		else
			alert(data);
	});
}
