jQuery(function(){
	jQuery("#gwMainMenu .gwSubMenu").hide();

	//高さなどを自動設定
	jQuery("#gwMenu").css("height",jQuery("#gwMainMenu img").eq(1).attr("height"));
	
	jQuery("#gwMainMenu .gwSubMenu").css("width",jQuery("#gwMainMenu img").eq(1).attr("width"));
	jQuery("#gwMainMenu li").css("width",jQuery("#gwMainMenu img").eq(1).attr("width"));
	jQuery("#gwMainMenu li a").css("width",jQuery("#gwMainMenu img").eq(1).attr("width"));
	
	//ドロップダウン動作
	jQuery("#gwMainMenu li").hover(
		function(){
			jQuery(this).find(".gwSubMenu").animate({
				height : "toggle",
				opacity : "toggle"
			}, "fast" );
			jQuery(this).find("img").attr("src",jQuery(this).find("img").attr("id") + "RO.gif");
		},
		function(){
			jQuery(this).find(".gwSubMenu").fadeOut("fast");
			jQuery(this).find("img").attr("src",jQuery(this).find("img").attr("id") + ".gif");
		}
	);
});

