

/**********************************
	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;

//these are the values we'll pass to Analytics--a 'friendly name' for each style, above.
arrStyleNames[0] = "style_one";
arrStyleNames[1] = "style_two";
arrStyleNames[2] = "style_three";	
arrStyleNames[3] = "style_four";		

function setRandomStyle() {
	if ((readCookie('currentstyle') > 0) && (readCookie('currentstyle') < arrStyles.length)) {
		intStyle = (parseInt(readCookie('currentstyle'))+1);
	} else {
		intStyle = 1;
	}
	
	var intStyleToShow = intStyle;

	strStyle = arrStyleNames[intStyleToShow];
	
	createCookie('currentstyle',intStyleToShow,7);
	
	// lastCall, in base.js, will look for this value to track in Analytics
	strCurrentStyle = strStyle;
	
	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 objShoppingBagDiv = $$('.nav_mini_sb')[0];
	var objShoppingBagImage = objShoppingBagDiv.getElementsByTagName('img')[0];
	
	if (intStyle==1) {

		//set styles
		document.write('<style type="text/css">');
		document.write('	body {background: url("/media/TB001/images/static/microsites/background_20091117_01.jpg") no-repeat; background-color:#fbf8f3;}');
		document.write('	#navlist, #navlist2 {margin-top:66px;} ');
		document.write('</style>');
		document.write('<div id="divHomepageLink" style="position:relative;top:80px;left:88px;width:832px;height:606px;margin:0px;z-index:50;"><a href="/TBG/Gifts.jsp?cm_sp=Home+Page-_-v1+11-17-2009-_-Group+Shot+-+Gifts"><img style="display:block" src="/media/TB001/images/static/spacer.gif" width="832" height="606" border="0" alt="Shop Gifts" /></a></div>');

	} else if (intStyle==2) {

		//set styles
		document.write('<style type="text/css">');
		document.write('	body {background: url("/media/TB001/images/static/microsites/background_20091117_02.jpg") no-repeat; background-color:#fbf8f3;}');
		document.write('	#navlist, #navlist2 {margin-top:66px;} ');
		document.write('</style>');
		document.write('<div id="divHomepageLink" style="position:relative;top:10px;left:88px;width:832px;height:606px;margin:0px;z-index:50;"><a href="/TBG/Men/Mens_New_Products/New_Arrivals_Relax.jsp?showAll=1&cm_sp=Home+Page-_-v2+11-17-2009-_-Andy+Canoe+-+Men+New+Arrivals"><img style="display:block" src="/media/TB001/images/static/spacer.gif" width="832" height="606" border="0" alt="Shop Relax New Arrivals" /></a></div>');
		
	} else if (intStyle==3) {

		//set styles
		document.write('<style type="text/css">');
		document.write('	body {background: url("/media/TB001/images/static/microsites/background_20091117_03.jpg") no-repeat; background-color:#fbf8f3;}');
		document.write('	#navlist, #navlist2 {margin-top:66px;} ');
		document.write('</style>');
		document.write('<div id="divHomepageLink" style="position:relative;top:80px;left:88px;width:832px;height:606px;margin:0px;z-index:50;"><a href="/TBG/Women/New_Product_Arrivals.jsp?cm_sp=Home+Page-_-v3+11-17-2009-_-Pink+Hat+in+Car+-+Women+New+Arrivals"><img style="display:block" src="/media/TB001/images/static/spacer.gif" width="832" height="606" border="0" alt="Shop Women\'s New Arrivals" /></a></div>');

	} else if (intStyle==4) {

		//set styles
		document.write('<style type="text/css">');
		document.write('	body {background: url("/media/TB001/images/static/microsites/background_20091117_04.jpg") no-repeat; background-color:#fbf8f3;}');
		document.write('	#navlist, #navlist2 {margin-top:66px;} ');
		document.write('</style>');
		document.write('<div id="divHomepageLink" style="position:relative;top:80px;left:88px;width:832px;height:606px;margin:0px;z-index:50;"><a href="/TBG/Men/Mens_New_Products/New_Arrivals_Collection.jsp?cm_sp=Home+Page-_-v4+11-17-2009-_-Andy+Beach+-+Men+New+Arrivals"><img style="display:block" src="/media/TB001/images/static/spacer.gif" width="832" height="606" border="0" alt="Shop Men\'s New Arrivals" /></a></div>');

		
	}
}