
// document ready ----------------------------------------------------------------------------------//
$(document).ready(function(){ 
	$("#winForm").load("http://www.tyrrellspotatochips.co.uk/code/mastercode.cfm?action=getform", 
					   function(){
						   $("#winLoader").hide();
						   } );

});
// end document ready ------------------------------------------------------------------------------//

function postForm() {
	$("#winForm").hide( 
					   function(){ 
							$("#winLoader").show(
												 function() {
													 setTimeout("hideLoader()",2000) } );	}); 
}

function hideLoader() {
	$("#winLoader").hide();
	$("#thankyou").show();
}


