$(function(){

    $("#videosRec a").each(function(){
        i = $('#videosRec a').index(this);
        tip = $('#videosRec a img').eq(i).attr('title');
        $(this).tooltip({
            tip: 'div[title='+ tip +']',
            effect: "slide",
            position: "top right",
            offset: [25, -20]
        });
    });

    $("#fotosRec a").each(function(){
        i = $('#fotosRec a').index(this);
        tip = $('#fotosRec a span').eq(i).attr('title');
        $(this).tooltip({
            tip: 'div[title='+tip+']',
            effect: "slide",
            position: "top right",
            offset: [25, -20]
        });
    });

    $("a[rel^='prettyPhoto']").prettyPhoto({theme: 'facebook'});


});

