jQuery(function($) {
	var active = $("body").attr("id");
	active = active.split("-");

	$("#gNavi li").hover(function(){
		//ロールオーバー
		if(active[1]!=$(this).attr("id")){
			$(this).find("div").stop().animate({height: "100%"}, 400 );
		}
	},function(){
		//ロールオーバー解除
		if(active[1]!=$(this).attr("id")){
			$(this).find("div").eq(0).stop().animate({height: "0"}, 400 );
		}
	});
	/*
		function(el) {
				$(this).find('div').stop().animate({ height: "100%"}, 400 );
		},
		function(el){
				$(this).find('div').eq(0).stop().animate({ height: "0%"}, 400 );
		}
		*/
});
