/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
 
jQuery(document).ready(function($){  

$(function() {
    $('ul.small_posts li').hover(function(){
        var myBottom = ($(this).find('span.shelf').height() * -1) - 25;
        $(this).find('span.shelf').css('bottom',myBottom);
        $(this).find('span.shelf').animate({bottom:'0px'},{queue:true,duration:300});
    }, function(){
       var myBottom = ($(this).find('span.shelf').height() * -1) - 25;
       $("#debug").text("The height " + myBottom);
        $(this).find('span.shelf').animate({bottom:myBottom},{queue:true,duration:200});
    });
});

								
								
});