$(function(){
	$('#gnavi li').hover(function(){
		$(this).find('ul:not(:animated)').show();
	},function(){
		$(this).find('ul').hide();
	});
});
