$(function(){
	$("#recommend_box").hover(
		function(){
			this.style.background = "#FFEAEA";
			this.style.border = "2px solid #CC0000";
		},
		function(){
			this.style.background = "#FFF";
			this.style.border = "2px solid #FFF";
		});
	$("table.hikaku_ranking").each(function(){
		$(this).find("tr").addClass("hover");
	});
	$("tr.hover").hover(
		function(){
			this.style.background = "#FFEAEA";
		},
		function(){
			this.style.background = "#FFF";
		});
	$("#myTable").tablesorter({sortList:[[1,1]]});
});
