$(document).ready(function(){
	
	//Fix Errors - http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup/
	
	//Remove outline from links
	$("a").click(function(){
		$(this).blur();
	});
	
	$(".navItem .current").parent().stop().animate({height:'50px'},{queue:false, duration:600, easing: 'easeOutBounce'});
	
	//When mouse rolls over
	$(".navItem a:not(.current)").parent().mouseover(function(){
		$(this).stop().animate({height:'50px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$(".navItem a:not(.current)").parent().mouseout(function(){
		$(this).stop().animate({height:'26px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
});