$(document).ready(function(){
$("#gNavi > ul > li").hover(
			function(){
				// 右隣に位置あわせ
				$(this).children("ul").css("position","absolute");
				//$(this).children("ul").css("top","-1px");
				
				// メインカテゴリを選択状態にする
				$(this).children("a").attr("id","current");

				// IE6
				if ((jQuery.browser.msie && jQuery.browser.version < 7)) {
					$(this).children("a").get(0).id = "current";
				}
				
				// 表示
				$(this).children("ul").show();

			},function(){
				// 非表示
				$(this).children("ul").hide();
				
				// メインカテゴリを非選択状態にする
				$(this).children("a").attr("id","");

				// IE6
				if ((jQuery.browser.msie && jQuery.browser.version < 7)) {
					$(this).children("a").get(0).id = "";
				}
			}

		);
});