$(function() {
	$("a.fancybox").fancybox();
	$("a.fancybox_iframe").each(function() {
		fsize = $(this).attr("rev").split(",");
		$(this).fancybox({
			type: 'iframe',
			width: parseInt(fsize[0]),
			height: parseInt(fsize[1])
		});
	});
});

