var videoWidth; var videoHeight; var videoIconDir;
function initLayout(){
	$('body').css('visibility', 'hidden');
	var windowHeight = $(window).height();
	var windowWidth = $(window).width();
	if(windowHeight >= 1400 && windowWidth > 2414){
		$("body").attr('id', 'veryhigh_res');
		$(".veryhigh_res").addClass('pgselected');
		videoWidth = 734;
		videoHeight = 436;
		videoIconDir = "/res/images/veryhigh/";
	}
	else if(windowHeight >= 882 && windowWidth > 1521){
		$("body").attr('id', 'high_res');
		$("body").addClass('shared_res');
		$(".high_res").addClass('pgselected');
		videoWidth = 446;
		videoHeight = 274;
		videoIconDir = "/res/images/high/";
	}
	else if(windowHeight >= 690 && windowWidth > 1190){
		$("body").attr('id', 'med_res');
		$("body").addClass('shared_res');
		$(".med_res").addClass('pgselected');
		videoWidth = 338;
		videoHeight = 214;
		videoIconDir = "/res/images/med/";
	}
	else{
		$("body").attr('id', 'low_res');
		$("body").addClass('shared_res');
		$(".low_res").addClass('pgselected');
		videoWidth = 286;
		videoHeight = 184;
		videoIconDir = "/res/images/low/";
	}
}


