var $j = jQuery.noConflict(); 

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