

/**********************************
	Begin fullpage displays
*/

var intStyle = 1;
var strStyle = "";
var arrStyles=new Array();
var arrStyleNames = new Array(); // to be passed to Analytics

//these are the numbers that will be randomly selected
arrStyles[0] = 1;
arrStyles[1] = 2;
arrStyles[2] = 3;
arrStyles[3] = 4;


function setRandomStyle() {
	var intRandom=Math.floor(Math.random()*(arrStyles.length));
	intRandom++;
	if ((readCookie('resorthome') > 0) && (readCookie('resorthome') < arrStyles.length)) {
		intStyle = (parseInt(readCookie('resorthome'))+1);
	} else if (readCookie('resorthome') == arrStyles.length) {
		intStyle = 1;
	} else {
		intStyle = intRandom;
	}
	
	var intStyleToShow = intStyle;

	
	createCookie('resorthome',intStyleToShow,7);
	

	
	showStyle(intStyleToShow);
}

function setSpecificStyle(intPosition) {
	intStyle = arrStyles[intPosition];
	strStyle = arrStyleNames[intPosition];
	
	// lastCall, in base.js, will look for this value to track in Analytics
	strCurrentStyle = strStyle;
	showStyle(intStyle);
}

function showStyle(intStyle) {
	var strAlpha = 'a';
	switch(intStyle) {
		case 1:
			strImagePath = '/media/TB001/images/static/microsites/background_20100119_01.jpg';
			break;
		case 2:
			strImagePath = '/media/TB001/images/static/microsites/background_20100119_02.jpg';
			break;
		case 3:
			strImagePath = '/media/TB001/images/static/microsites/background_20100119_03.jpg';
			break;
		case 4:
			strImagePath = '/media/TB001/images/static/microsites/background_20100119_04.jpg';
			break;
	}
	
	//set styles
	document.write('<style type="text/css">');
	document.write('	body {background: url("'+strImagePath+'") no-repeat; background-color:#fbf8f3;}');
	//document.write('	#navlist, #navlist2 {margin-top:866px;} ');
	document.write('</style>');


	if (intStyle==1) {
		document.write('<div id="divHomepageLink" style="position:relative;top:28px;left:70px;width:918px;height:646px;margin:0px;z-index:50;"><img style="display:block" src="/media/TB001/images/static/spacer.gif" width="918" height="646" border="0" usemap="#map_home1" /></div>');

	} else if (intStyle==2) {
		document.write('<div id="divHomepageLink" style="position:relative;top:28px;left:70px;width:918px;height:646px;margin:0px;z-index:50;"><img style="display:block" src="/media/TB001/images/static/spacer.gif" width="918" height="646" border="0" usemap="#map_home2" /></div>');
		
	} else if (intStyle==3) {
		document.write('<div id="divHomepageLink" style="position:relative;top:28px;left:70px;width:918px;height:646px;margin:0px;z-index:50;"><img style="display:block" src="/media/TB001/images/static/spacer.gif" width="918" height="646" border="0" usemap="#map_home3" /></div>');

	} else if (intStyle==4) {
		document.write('<div id="divHomepageLink" style="position:relative;top:28px;left:70px;width:918px;height:646px;margin:0px;z-index:50;"><img style="display:block" src="/media/TB001/images/static/spacer.gif" width="918" height="646" border="0" usemap="#map_home4" /></div>');
		
	}


}
