$(document).ready(function(){
	
	//Fix Errors - http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup/
	
	//Remove outline from links
	$("ul#gNav a").click(function(){
		$(this).blur();
	});
	
	//When mouse rolls over
	$("ul#gNav li a").mouseover(function(){
		$(this).stop().animate({height:'116px'},{queue:false, duration:400, easing: 'easeOutBounce'})
	});
		
	//When mouse is removed
	$("ul#gNav li a").mouseout(function(){
		$(this).stop().animate({height:'47px'},{queue:false, duration:400, easing: 'easeOutBounce'})
	});

	//When mouse rolls over
	$("ul#gNav li").mouseover(function(){
		$(this).stop().animate({height:'116px'},{queue:false, duration:400, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$("ul#gNav li").mouseout(function(){
		$(this).stop().animate({height:'47px'},{queue:false, duration:400, easing: 'easeOutBounce'})
	});
	
});
