$(function(){
	$("#btn_sub,#btn_addtocart input").hover(function(){
		$(this).css('cursor','pointer');
	},function(){
		$(this).css('cursor','normal');
	});
});
