$(document).ready(function(){
	if($.browser.msie){
		$("tr").hover(function(){
			$(this).children("td").css("background", "#EC5833");
			$(this).children("td").css("color", "#000033");
		}, function(){
			$(this).children("td").css("background", "none");
			$(this).children("td").css("color", "#000000");
		});
	}
});