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

	
});