$(document).ready(function(){
	
	$("a").click(function(){
		$(this).blur();
	});
	
	$("#nav li").mouseover(function(){
		$(this).find("div").stop().animate({height:'134px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});

	$("#nav li").mouseout(function(){
		$(this).find("div").stop().animate({height:'0px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});

   $("nav li div p").mouseover(function(){
      $(this).stop().animate({left: '15px'},{quene:false, duration:200, easing: 'easeOutBounce'})
   });

   $("nav li div p").mouseout(function(){
      $(this).stop().animate({left: '0px'},{quene:false, duration:200, easing: 'easeOutBounce'})
   });
	
});

