// 
// prevent double-click on submit 
//
$(document).ready(function() {
  jQuery('input[type=submit]').click(function(){ 
    if(jQuery.data(this, 'clicked')){ 
      //alert("prevent doubleclick");
	  return false; 
    } 
    else{ 
      jQuery.data(this, 'clicked', true); 
      return true; 
    } 
  });
  
  $(window).bind('pageshow',function() {
	//make the browsers back button work!
	$.each($('input[type=submit]'), function(index, value) {
	  jQuery.data(value, 'clicked', false);
	  
	});
	//alert("init");
  });
  
});
