//types of pages
var types = [["multimediablock", "multimedia"], ["galleryblock", "gallery"], ["videocontainer", "videolist"], ["body_wrap", "text"]];

//current page type
var type = false;

//page body selector
var containerRef = false;

//container id to be resize
var div_id = 'container_fullscreen';

//dimensions
var winW = 0;
var winH = 0;
var minW = 1000;
var minH = 560;

function initialisePage()
{
	checkWindowDimensions();
	processPageType();
	setcontainerRef();
}

//checks for page resize
function checkWindowDimensions()
{
	//actual dimensions
	winW = $(window).width();
	winH = $(window).height();
	if(winW < minW)
	{
		$('#'+div_id).width(minW);
	}
	else
	{
		$('#'+div_id).width("100%");
	}
	if(winH < minH)
	{
		$('#'+div_id).height(minH);
	}
	else
	{
		$('#'+div_id).height("100%");
	}
	
}

//process what type of page it it
function processPageType()
{
	for(var i=0; i < types.length; i++)
	{
		var p = $('#body .'+types[i][0]);
		if(p.size() > 0)
		{
			type = types[i][1];
			break;
		}
	}
}

//set page body selector
function setcontainerRef()
{
	if(type == 'text')
	{
		containerRef = '#body .body_wrap';
	}
	else if(type == 'gallery')
	{
		//containerRef = '.galleryblock_info';
		containerRef = '#body .galleryblock';
	}
	else if(type == 'videolist')
	{
		containerRef = '#body';
	}
	else if(type == 'multimedia')
	{
		containerRef = '#body .body_wrap';
	}
}



