$(document).ready(function() {
    $('img.youtube').attr('title', 'Click to play').click(openYoutube);
});

function openYoutube(e) {
    var frame_src = $(this).attr('rel');

    if (frame_src) {
        var html = '<div style="width:800px;height:600px;padding:5px;"><iframe title="YouTube video player" width="800" height="600" src="'+frame_src+'" frameborder="no" allowfullscreen></iframe></div>';
        $.facebox(html);
    }
}
