﻿$(document).ready( 
	function()
	{
		InitialisePopUps();
	}
);

function InitialisePopUps()
{
	InitCB(".modal-popup450x250", "450", "250");
	InitCB(".modal-popup450x300", "450", "300");
	InitCB(".modal-popup450x350", "450", "350");
	InitCB(".modal-popup450x400", "450", "400");
	InitCB(".modal-popup450x420", "450", "420");
	InitCB(".modal-popup550x400", "550", "400");
	InitCB(".modal-popup550x150", "550", "150");
	InitCB(".modal-popup600x400", "600", "400");
	InitCB(".modal-popup600x500", "600", "500");
	InitCB(".modal-popup600x600", "600", "600");
	InitCB(".modal-popup700x700", "700", "700");
	InitCB(".modal-popup500x300", "500", "300");
	InitCB(".modal-popup800x250", "800", "250");
	InitCB(".modal-popupSendMsg", "450", "500");
	InitCB(".modal-popupBecomeFan", "550", "170");
	InitCB(".modal-popupUpload", "325", "290");
	
	if ( $(".modal-popup") )
		$(".modal-popup").colorbox({iframe:true, scolling:false, escKey:false, overlayClose:false});	
}

function InitCB(anchor, width, height)
{
	if ( $(anchor) )
		$(anchor).colorbox({innerWidth:width, innerHeight:height, iframe:true, scolling:false, escKey:false, overlayClose:false});
}

function IsRunningInColorBox()
{
	return (parent.$("#colorbox").css("display")=="block");
}

function CloseColorBoxAndNavRoot() 
{
	parent.$.fn.colorbox.close(); 
	parent.location.href = '/';
	return false;
}
