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

videos = {
	embed_video: function(video_id) {
		jQuery.facebox('<div id="video-container"></div>');
		$('#video-container').flash(
			{
				width: 400,
				height: 265,
				params: {
					allowfullscreen: true
				},
				swf: 'http://vimeo.com/moogaloop.swf',
				flashvars: {
					clip_id: video_id,
					server: 'vimeo.com',
					show_title: 1,
					show_byline: 1,
					show_portrait: 0,
					fullscreen: 1,
					autoplay: 1
				}
			}
		);
	}
};

$(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;
		});
	});
});