$(document).ready(function() {
	$("a[rel=\'colorbox_image\']").colorbox({ opacity:0.8 });
	$("a[rel=\'colorbox_iframe\']").each(function() {
		var rev, sx, sy;
		rev = $(this).attr("rev");
		sx = parseInt( rev.substring(0, rev.indexOf(",")) );
		sy = parseInt( rev.substring(rev.indexOf(",")+1) );
		$(this).colorbox({ iframe:true, innerWidth:sx, innerHeight:sy, opacity:0.8 });
	});
});

