$(function(){
    $("#ofertasemana .fot").mouseover(function(){
        $(this).addClass("ativo");
    }).mouseout(function(){
        $(this).removeClass("ativo");
    });

    $("#thumbvideo a").click(function(){
        $.fancybox({
            'titleShow'     : false,
            'transitionIn'  : 'elastic',
            'transitionOut' : 'elastic',
            'href' : this.href.replace(new RegExp("watch\\?v=", "i"), 'v/') + '&autoplay=1',
            'type' : 'swf',
            'swf'  : {'wmode':'transparent','allowfullscreen':'true'}
        });
        return false;
    });

})
