$(document).ready(function() {
  $("input[name='submit']").livequery('click', function() {
  	$('#contact_form').fadeOut('normal', function () {
		$('#contact_form_wrapper').css({"background" : "url(images/ajax-loader.gif) center center no-repeat"});
		setTimeout(function (){postit();},600);
	});
	return false;
	});
	function postit(){
		$.post('includes/contact.inc.php', {'name': $("input[name='name']").val(), 'email' : $("input[name='email']").val(), 'subject' : $("input[name='subject']").val(), 'message' : $("textarea[name='message']").val(), 'submit' : 'submit'}, 
		function(data){
			$('#contact_form').html(data);
			$('#contact_form_wrapper').css({"background": "none"});
			$('#contact_form').fadeIn('normal');
   		}, "html");
	}
});