jQuery.noConflict();
 
jQuery(document).ready(function($){
	$(".trow1").hover(function(){
		$(this).stop().animate({backgroundColor: "#f7f4e8"}, "normal")
	}, function(){
		$(this).stop().animate({backgroundColor: "#f5f5f5"}, "fast")
	});
	$(".trow2").hover(function(){
		$(this).stop().animate({backgroundColor: "#f7f4e8"}, "normal")
	}, function(){
		$(this).stop().animate({backgroundColor: "#EFEFEF"}, "fast")
	});
});