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