/*TOP スペシャル*/


$(function(){
$("img.sam").mouseover(function(){
$("#top_sp_main img").attr("src",$(this).attr("src").replace(/^(.+)(\.[a-z]+)$/, "$1_on$2"));
}).mouseout(function(){
$("#top_sp_main img").attr("src",$(this).attr("src").replace(/^(.+)(\.[a-z]+)$/, "$1_on$2"));
});
});


$(function(){
$("img.sam").mouseover(function(){
$("#top_sp_main a").attr("href",$(this).attr("href"));
}).mouseout(function(){
$("#top_sp_main a").attr("href",$(this).attr("href"));
});
});


/*TOP ランキングパネル*/	
$(function(){
	$("div.panel div:not("+$("ul.tab li a.selected").attr("href")+")").hide()
	$("ul.tab li a").click(function(){
		$("ul.tab li a").removeClass("selected");
		$(this).addClass("selected");
		$("div.panel div").hide();
		$($(this).attr("href")).show();
		return false;
	});
});


/*TOP セレクトパネル*/
$(function(){
	$("div#select_box dd:not(:first)").css("display","none");
	$("div#select_box dt#osusume dt:first").addClass("selected");
	$("div#select_box dl dt").click(function(){
		if($("+dd.select_item",this).css("display")=="none"){
			$("dd.select_item").slideUp("slow");
			$("+dd.select_item",this).slideDown("slow");
			$("dt").removeClass("selected");
			$(this).addClass("selected");
		}
	}).mouseover(function(){
		$(this).addClass("over");
	}).mouseout(function(){
		$(this).removeClass("over");
	});
});
