$(document).ready(function(){
  var options = { 
    success: showResponse,
    timeout: 3000
  };
  $('#mailform').submit(function() { 
    $(this).ajaxSubmit(options); 
    return false;
  }); 
  $('#form_order').submit(function() { 
    $(this).ajaxSubmit(options); 
    return false;
  }); 
});
function showResponse(responseText) { 
if (responseText=='OK') {
	alert('Ваше сообщение отправлено!');
	window.location.reload(true);  
	}
else  {alert(responseText);}
}
