$(document).ready(onLoad);

function onLoad() {
	initColorBox();
}

function initColorBox() {
	// assign the ColorBox event to elements
	$(".colorbox").colorbox({
		maxWidth: "900px", maxHeight: "800px",
		transition: "elastic",   // 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 });
	$(".colorIframe2Full").colorbox({width:"80%", height:"80%", iframe:true});

	// hide title in ColorBox when it is empty
	$().bind('cbox_complete', function() {
		if ($("#cboxTitle").html() == "")
			$("#cboxTitle").hide();
	});
}


function ShowImg(ID)
{
	window.open('/admin/common/ShowImage.asp?FileID=' + ID + '&NoProps=True','Bilde' + ID,'height=150,width=150,resizable=no,menubar=no,location=no,scrollbars=no,status=no,toolbar=no')
}

