jQuery.fn.extend({
	ieHover: function() {
		if($.browser.msie) { 
			$(this).hover(
				function(){ $(this).addClass("hover"); },
				function(){ $(this).removeClass("hover"); }
			);
		}
	}
});

$().ready( function() { 
	$('.buttons input').ieHover();
});