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

