<script type="text/javascript">
    $(function(){
        $('.caseslist').hover(function(){
            if(!$(this).is(":animated")){
                $(this).children('.casedetail').animate({'bottom':'0px'}, 300);
            }
        },function(){
        $(this).children('.casedetail').animate({'bottom':'-50px'}, 300);
        });
    });
</script>