$(document).ready(function(){

    //When mouse rolls over
    $("lipa").mouseover(function(){
        $(this).stop().animate({height:'150px'},{queue:false, duration:700, easing: 'easeOutBounce'})
    });

    //When mouse is removed
    $("lipa").mouseout(function(){
        $(this).stop().animate({height:'29px'},{queue:false, duration:700, easing: 'easeOutBounce'})
    });

});




