$(document).ready(function(){
	$("#table tr").hover(
		function(){
			$(this).css({"background-color":"#eee"});
		},
		function(){
			$(this).css({"background-color":"white"});
		}
	)
})
