$(function(){
	$("#swap00").show();
	$("#list_bnr a").hover(
	function(){
		$(this).parents(".pad01").find("h2 img").hide();
		var myID=$(this).attr("name");
		$("#"+myID).fadeIn(300);
		},function(){
		$("#"+myID).fadeOut(300);
	}
	);
	
	$("#list_bnr").mouseout(
	function(){
		$(this).parents("#header03").find("h2 img.fade").hide();
		var myID=$(this).attr("name");
		$("#swap00").fadeIn(300);
		}
	);

});


