$().ready(function(){
    $('.albumwrapper img').bind('mouseover',function(){
        $(this).fadeTo('fast', 0.87);
    });
    $('.albumwrapper img').bind('mouseout',function(){
        $(this).fadeTo('fast', 1);
    });
});
