// JavaScript Document
$(document).ready(function(){

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

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

});
