$(document).ready(function(){
													 
	$(".current").stop().animate({height:'40px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	
	$("#menu a").click(function(){
		$(this).blur();
	});
	
	$("#menu li").mouseover(function(){
		$(this).stop().animate({height:'40px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	$("#menu li:not(.current)").mouseout(function(){
		$(this).stop().animate({height:'15px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
});
