$(document).ready(function(){
	
	// -- See http://buildinternet.com/2009/01/how-to-make-a-smooth-animated-menu-with-jquery/
	// -- Fix Errors - http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup/
	
	// Remove outline from links
	$("#gnavi a").click(function(){
		$(this).blur();
	});
	
	// When mouse rolls over
	$("#gnavi li").mouseover(function(){
		                           // ★ ↓ ＭＡＸメニュー数 x 30px + 30px（ see common.css @ #gnavi li p a ）
		$(this).stop().animate({height:'254px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	// When mouse is removed
	$("#gnavi li").mouseout(function(){
		$(this).stop().animate({height:'50px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
});