$(document).ready(function(){
	
	$("a").click(function(){
		$(this).blur();
	});
	
	$("li").mouseover(function(){
		$(this).stop().animate({height:'30px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	$("li").mouseout(function(){
		$(this).stop().animate({height:'25px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});

});
