$(document).ready(function(){
 
	$(".more").hover(function(e) {

	var id_tr = this.id;
	$("#td"+id_tr).stop(true, true).animate({opacity: "show"}, "fast");
	}, function() {
	$(".grey_rows_hidden").animate({opacity: "hide"}, "fast");
	});
 
});

$("tr").hover(function(){
  $(".block").animate( { backgroundColor: 'pink' }, 1000)
    .animate( { backgroundColor: 'blue' }, 1000);
});

