$(document).ready(function() {
    
    $(".video").append(function() {
        var url = $(this).attr('id');
        var direc = $.jYoutube(url, 'small');
        var titulo = $(this).attr('title');
        
        var html = '<a class="video_ampliable" href="' + url + '"><img src="'+ direc +'" alt="' + titulo + '" /></a>';
        
        return (html);
    });
    
    $(".video_ampliable").prettyPhoto();


});


