﻿
$(function(){
	// ドロップダウンメニューリスト非表示
	$(".effect").hide();
	
	// ドロップダウンメニューオーバー時処理
    $("ul#main_menu li").hover(function(){
    		
    		// アニメーション処理キャンセル
	    	$(this).find(".effect").stop(true,true);
	    	
	    	// ドロップダウンメニュー高さ、幅設定
		var effect = $(this).find(".effect");
		var w = (effect.outerWidth() - 0) + "px";
		var h = effect.outerHeight() + "px";
		var nh = effect.outerHeight() * (-1) + "px";
	    	effect.find(".effect_bg").css({width: w,height: h});
			effect.find("ul").css({marginTop: nh});
	    	
	    	// アニメーション処理
            $(this).find(".effect:not(:animated)",this).slideDown(250);
        },
        function(){
        	// アニメーション処理
            //$(this).find("div.effect",this).slideUp(250);
			$(this).find("div.effect",this).animate(
				{
					height:"1px"
				},
				{
					duration: 250,
					complete: function(){
						$(this).closest(".effect").css({display:"none",height:"auto"});
					}
				}
			);
    	})

})
