$(document).ready(function(){
	$('input[type=submit]').hover(function() {
		$(this).css('cursor','pointer');								
	});		
	$('button').hover(function() {
		$(this).css('cursor','pointer');								
	});			
});						   
