$(document).ready(function(){

//Fix Errors - http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup/

//Remove outline from links
$(".header-widget ul li a").click(function(){
$(this).blur();
});

//When mouse rolls over
$(".header-widget ul li").mouseover(function(){
$(this).stop().animate({height:'150px'},{queue:false, duration:600, easing: 'easeOutBounce'})
});

//When mouse is removed
$(".header-widget ul li").mouseout(function(){
$(this).stop().animate({height:'42px'},{queue:false, duration:600, easing: 'easeOutBounce'})
});

});
