

///////////////////////////////////////////////////////////////////////////

//　グローバルナビ
$(document).ready(function(){
	$("#wrap nav a").css("opacity",0);
	$("#wrap nav .on").css("opacity",1);
	$("#wrap nav a").mouseover(function(){
		$(this).stop().fadeTo("normal",1);
	});
	$("#wrap nav a:not(.on)").mouseout(function(){
		$(this).stop().fadeTo("slow",0);
	});
});

///////////////////////////////////////////////////////////////////////////

//　フェードリンク
$(document).ready(function(){
	$("#hNav01 a , #hNav02 a , #topLink a img , #bottomLink a img , #banner a img , #toWeb a , #toPrice a , #detail a img , #port .pic img , #toContact a").mouseover(function(){
		$(this).css("opacity",0.5);
		$(this).fadeTo(1000,1);
	});
});

///////////////////////////////////////////////////////////////////////////

//　開閉パネル
$(document).ready(function(){
	$("#subPanel dd:not(:first)").css("display","none");
	$("#subPanel dt:first").addClass("open");
	$("#subPanel dt:not(:first)").addClass("close");
	$("#subPanel dt.open").toggle(function(){
		$(this).removeClass("open");
		$("+dd",this).slideUp("normal");
	},function(){
		$(this).addClass("open");
		$("+dd",this).slideDown("normal");
	});
	$("#subPanel dt.close").toggle(function(){
		$(this).addClass("open");
		$("+dd",this).slideDown("normal");
	},function(){
		$(this).removeClass("open");
		$("+dd",this).slideUp("normal");
	});
	$("#subPanel dt").mouseover(function(){
		$(this).addClass("hover");
	});
	$("#subPanel dt").mouseout(function(){
		$(this).removeClass("hover");
	});
});

///////////////////////////////////////////////////////////////////////////

//　ページトップ
$(document).ready(function(){
	$("#pageTop a").click(function(){
		$("html , body").animate({ scrollTop: $("#wrap").offset().top}, "slow", "easeOutCirc");
		return false;
	});
});

///////////////////////////////////////////////////////////////////////////











