    $(document).ready(function(){

        //When mouse rolls over
        $("dt").mouseover(function(){
            $(this).stop().animate({height:'290px'},{queue:false, duration:600, easing: 'easeOutBounce'})
        });

        //When mouse is removed
        $("dt").mouseout(function(){
            $(this).stop().animate({height:'35px'},{queue:false, duration:600, easing: 'easeOutBounce'})
        });

    });
