function b_hover(){
if($.browser.msie){
			$('button').hover(function(){
				  $(this).addClass("over");
				},function(){
				  $(this).removeClass("over");
				});
			};
}