$(document).ready(function(){
	
	
	//Remove outline from links
	$("#menu a").click(function(){
		$(this).blur();
	});
	
	//When mouse rolls over
	$("#menu li").mouseover(function(){
		$(this).stop().animate({height:'350px'},{queue:false, duration:800, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$("#menu li").mouseout(function(){
		$(this).stop().animate({height:'35px'},{queue:false, duration:800})
	});
	
});