$(function(){
	$("tr:not(:first-child)").mouseover(function(){
		$(this).addClass("hover");
	}).mouseout(function(){
		$(this).removeClass("hover");
	})
});

$(function(){
	$(".1").mouseover(function(){
		$(this).css('background','#E7E7E7');
	}).mouseout(function(){
		$(this).css('background','#ffffff');
	});
});
