	$(document).ready(function(){
		$(".cfr tr").hover (function()
		{
			$(this).css("background-color", "#f9eae0");
			$(this).find("a").each( function() {
				$(this).css("color", "#ff6600"); });
		}, function ()
		{
			$(this).css("background-color", "#ffffff");	
			$(this).find("a").each( function() {
				$(this).css("color", "#000000"); });
		});
	});
