$(document).ready(function(){


		$("table tr")
			.mouseover(function(){
				$(this).addClass("hover");
		});

                $("table tr")
                                .mouseout(function(){
                                        $(this).removeClass("hover");
                        });


});
