$(document).ready(function(){
	var options={
			target:"#order",
			beforeSubmit: showRequest,
			timeout: 3000
	};
	$(".but").live("click",function(){
		if (navigator.appName=='Microsoft Internet Explorer'){
			return true;
		}
		$("#order_form").ajaxSubmit(options,this);
		return false;
	});
	function showRequest(formData,jqForm,options){
		
		return true;
		
	}
});

