﻿$(function(){
	
	$(".t_rank_list_01 a").append("<span class=\"t_rank_over\">&nbsp;</span>");
	
	$(".t_rank_list_01 a").hover(
		function(){
			$(this).find(".t_rank_over").html("<img src=\"img/t_rank_over_01.gif\" alt=\"詳細を見る\" width=\"74\" height=\"74\" />");
		},
		function(){
			$(this).find(".t_rank_over").html("&nbsp;");
		}
	);
});

