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