 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(".mainmenu a").click(function(){
		$j(this).blur();
	});
	
	//When mouse rolls over
	$j(".mainmenu li").mouseover(function(){
		$j(this).stop().animate({height:'150px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$j(".mainmenu li").mouseout(function(){
		$j(this).stop().animate({height:'20px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
});
