$(document).ready(function(){
    $('#thumbs li a img').each(function(){
        var newSrc = '/images/compagnie/thumbs/hover/' + $(this).attr('src').substr(25);
        $(this).attr('src', newSrc);
        $(this).hover(
            function(){
                $(this).css({top: "-48px"});
            },
            function(){
                if (!$(this).hasClass('selected')){
                    $(this).css({top: "0"});
                }
            }                
        );
        if ($(this).hasClass('selected')){
            $(this).css({top: "-48px"});
        }
    });
});

