// IMAGES FRIENDPAGE
$(function() {

    $('.imgFull').hover(function() {
        $(this).children('.imgComment').stop().animate({"opacity": '0.8'}, 60);}    
        , function(){
        $(this).children('.imgComment').stop().animate({"opacity": '0.0'}, 100);});
});

// BESTSELLER

$(function() {

    $('.imgFull').hover(function() {
        $(this).children('.imgComment_bestseller').stop().animate({"opacity": '0.8'}, 60);}    
        , function(){
        $(this).children('.imgComment_bestseller').stop().animate({"opacity": '0.0'}, 100);});
});

