
$(function () {
	$("a[rel^='lightbox']").each(function () {
		var opts = {
			'padding'		: 0,
			'title'			: $(this).siblings().filter("p").first().html(),
			'transitionIn'	: 'elastic',
			'transitionOut'	: 'elastic'
		};
		if ($(this).hasClass("iframe")) {
			opts["type"] = "iframe";
			opts["width"] = 640;
			opts["height"] = 510;
			opts["index"] = -1;
			opts["showNavArrows"] = false;
		}
		$(this).fancybox(opts);
	});
});

