$(document).ready(initColorBox);

function initColorBox() {
	// assign the ColorBox event to elements
	$(".colorbox").colorbox({
		maxWidth: "758px", 
		maxHeight: "504px",
		transition: "none",   // can be set to "elastic", "fade", or "none"
		photo: true,   // if true, forces ColorBox to display a link as a photo
		current: "{current} av {total}",
		previous: "forrige",
		next: "neste",
		close: "lukk",
		iframe: false,   // if true specifies that content should be displayed in an iFrame
		overlayClose: true   // if true, enables closing ColorBox by clicking on the background overlay
	});

	$(".colorIframe").colorbox({ iframe: true, title: false, innerWidth: 620, innerHeight: 400 });
	$(".colorIframe2").colorbox({ iframe: true, title: false, innerWidth: 620, innerHeight: 400 });
	$(".colorPopupBox").colorbox({iframe:true, title: false,innerWidth:425, innerHeight:344});
	$(".colorIframe2Full").colorbox({width:"80%", title: false, height:"80%", iframe:true});
	
	
	$(".cbError").colorbox({iframe:true, innerWidth:270, innerHeight:190});


	
}
