$.extend($.facebox.settings, {
    opacity: 0.7
});

videos = {
    embed_video: function(video_id) {
        jQuery.facebox('<div id="video-container"></div>');
        $('#video-container').html('<iframe src="http://player.vimeo.com/video/'+video_id+'?title=0&amp;byline=0&amp;portrait=0&amp;color=000000" width="400" height="265" frameborder="0"></iframe>');
    }
};

$(function() {
    // alter html
    $('#videos a').each(function() {
        el = $(this);
        el.css('backgroundRepeat', 'no-repeat');
        el.click(function() {
            video_id = $(this).attr('href').replace(/.+?([\d]+)$/, "$1");
            videos.embed_video(video_id);
            return false;
        });
    });
});