$(document).ready(function(){
	$("a[rel='colorbox']").colorbox({current: "{current}/{total}"});
	$(".flashvideo").colorbox();
	
	$("a.iframe").each(function(i){
		var iframe = '<iframe id="iframe-' + i + '"></iframe>';
		var src = $(this).attr('href');
		$(this).parent().replaceWith( iframe );
		$('#iframe-' + i).attr('src', src);
	});
	
});

