(function($) {
 $(function() {
	//Remove outline from links
	$("#anim1 > ul > li > p > a").click(function(){
		$(this).blur();
	});
	
	//When mouse rolls over
	$("#anim1 > ul > li").mouseover(function(){
		$(this).stop().animate({height:'200px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});

	//When mouse is removed
	$("#anim1 > ul > li").mouseout(function(){
		$(this).stop().animate({height:'50px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
 });
})(jQuery);

