// Functon to Show out Busy Div
function showBusy(){
	$('#busy').show('slow');
}



// function to process form response
function processForm(html){

		window.setTimeout( function(){
			$('#busy').hide('slow');
			if(parseFloat(html)){
		 		$('#success_message').show('slow');
		 		$('#supplier_contact').hide('slow');
			}else{
				document.getElementById('error_message').innerHTML = html;
		 	}
		 	
		 }, 3000);
}


$(document).ready(function() {

	// $.AJAX Example Request
	$('#supplier_contact').submit(function(eve){
		eve.preventDefault();
		$.ajax({
			url: "/ajax/ask_question.php",
			type: "POST",
			dataType: "html",
			data: $('#supplier_contact').serialize(),
			beforeSend: function(){

				showBusy();
			},	
		  	success: function(html) {
		    	processForm(html);
		 	}
		});

	});	
	

});

