$(document).ready(function(){
    $('.quote').bind('mouseenter', function(){ $('.quote_share', this).show(); });
    $('.quote').bind('mouseleave', function(){ $('.quote_share', this).hide(); });
    /*
    $('.ratings').bind('mouseenter', function(){
        $('img', this).show();
        $('div', this).eq(0).css('margin-top', '2px');
    });
    $('.ratings').bind('mouseleave', function(){
        $('img', this).hide();
        $('div', this).eq(0).css('margin-top', '26px');
    });
    $('.tags').bind('mouseenter', function(){ 
        $('.tag_action', this).show(); 
        $('.tag_action', this).css('display', 'block');
        $(this).css('padding-top', '5px'); 
    });
    $('.tags').bind('mouseleave', function(){ $('.tag_action', this).hide(); $(this).css('padding-top', '21px'); });
    */
});
