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