jQuery(document).ready(function() {


$(document).ajaxStart(function() {
  $("#ajax_loading").show()
});

$(document).ajaxStop(function() {
  $("#ajax_loading").hide();
});

$(document).ajaxError(function(e, xhr, settings, exception) {
	alert('Error Communicating with Server: ' + settings.url + "\n\nCheck your internet connection and/or refresh your page\n\nPlease contact support@xtremeheaters.com with the error message if the problem persists"); 
}); 

$('form').submit(function(){
    // On submit disable its submit button
  	$("#ajax_loading").show()
	$('input[type="submit"]').attr('disabled','disabled');
	$('input[type="image"]').attr('disabled','disabled');

	//$('input[type=submit]', this).attr('disabled', 'disabled');
	//$('input[type=image]', this).attr('disabled', 'disabled');
});


});

