$(function() {
	// 右カラム：全体からの新着
	$(".subSummary tr").mouseover(function() {
		$(this).addClass("current");
	});
	$(".subSummary tr").mouseout(function() {
		$(this).removeClass("current");
	});
});
