jQuery.ajaxSetup({type: "POST"});

jQuery(document).ready(function() {
													
	jQuery("#submit").mouseover(
	function(){
		jQuery(this).css({'background-position':"0 -37px"});
		}
	);	
	jQuery("#submit").mouseout(
	function(){
		jQuery(this).css({'background-position':"0 0"});
		}
	);	
	
	}
);
