//---------------------------------------// start: BROWSER DETECTION//---------------------------------------//for NS 4+, IE 5+var doc, doc2, doc3, sty;var n4,ie,n6;	if (document.layers){		n4=true;doc = "document.";doc2="document.";doc3="";sty="";	} else if (document.all){		ie=true;doc = "document.all.";doc2="";doc3="";sty=".style";	} else if(document.getElementById){		n6=true;doc = "document.getElementById('";doc2="'');";doc3="');";sty=".style";	} //---------------------------------------// end: BROWSER DETECTION//---------------------------------------//---------------------------------------// start: main menu data/functions//---------------------------------------	fa2004bathrobesMenu = new Array('bt_04_0001_th'										,'bt_04_0002_th'										,'bt_04_0003_th'										,'bt_04_0004_th')	fa2004costumesMenu = new Array('co_04_0001_th'										,'co_04_0002_th'										,'co_04_0003_th'										,'co_04_0004_th'										,'co_04_0005_th'										,'co_04_0006_th'										,'co_04_0007_th')		fa2004embroideredMenu = new Array('ct_04_0004_th'															,'ct_04_0006_th'															,'ct_04_0011_th'															,'ct_04_0013_th'															,'ct_04_0018_th'															,'ct_04_0019_th'															,'ct_04_0022_th'	)	fa2004mixedMenu = new Array('ct_04_0000_th'															,'ct_04_0002_th'															,'ct_04_0003_th'															,'ct_04_0007_th'															,'ct_04_0008_th'															,'ct_04_0014_th'															,'ct_04_0015_th'															,'ct_04_0016_th'															,'ct_04_0020_th'															,'ct_04_0021_th'	)	fa2004furCoatsMenu = new Array('ct_04_0001_th'															,'ct_04_0009_th'															,'ct_04_0012_th'															,'ct_04_0017_th'															,'ct_04_0024_th')	sp2005windbreakersMenu = new Array('wb_05_0001_th'															,'wb_05_0002_th'															)	fa2004sweatersMenu = new Array('sw_04_0001_th'															,'sw_04_0002_th'															,'sw_04_0003_th'															,'sw_04_0004_th'															,'sw_04_0005_th')												sp2005dressesMenu = new Array('dr_05_0001_th'															,'dr_05_0002_th'															,'dr_05_0003_th'															,'dr_05_0004_th'															,'dr_05_0005_th'															,'dr_05_0006_th'															,'dr_05_0007_th'															,'dr_05_0008_th'															,'dr_05_0009_th'															,'dr_05_0010_th'															,'dr_05_0011_th'															,'dr_05_0012_th'															)																sp2005coatsMenu = new Array('ct_05_0001_th'															,'ct_05_0002_th'															,'ct_05_0003_th'															,'ct_05_0004_th'															,'ct_05_0005_th'															,'ct_05_0006_th'															,'ct_05_0007_th'															,'ct_05_0008_th'															,'ct_05_0009_th'															,'ct_05_0010_th'															,'ct_05_0011_th'															,'ct_05_0012_th'															,'ct_05_0013_th'															,'ct_05_0014_th'															,'ct_05_0015_th'															,'ct_05_0016_th'															,'ct_05_0017_th'															,'ct_05_0018_th'															,'ct_05_0019_th'															,'ct_05_0020_th'																														)																																													     fa2004semipreciousMenu = new Array('ct_04_0031_th'															,'ct_04_0032_th'															,'ct_04_0033_th'															,'ct_04_0034_th'															,'ct_04_0036_th'															,'ct_04_0037_th'															,'ct_04_0038_th'															,'ct_04_0039_th'															,'ct_04_0040_th'															,'ct_04_0041_th'															,'ct_04_0042_th'															,'ct_04_0043_th'															,'ct_04_0044_th'															,'ct_04_0045_th'															,'ct_04_0046_th'															,'ct_04_0047_th'															,'ct_04_0048_th')		mainMenuData = new Array('m_coll'										,'m_about_eeh'										,'m_about_owners'										,'m_press'										,'m_stores')	mainMenuImageArray = new Array();				collectionMenuImageArray = new Array();								function loadImages(mData, imgArray,subdir, imgWidth, imgHeight,imgType){				numCols =1		numRows = mData.length/numCols		for(var i=0; i < numRows; i++){			imgName = mData[i*numCols];			//imgWidth = mData[(i*numCols)+1];			imgOnName  = imgName + 'On' ;			imgArray[imgOnName] = new Image(imgWidth,imgHeight);			imgArray[imgOnName].src =subdir + "/" + imgName + "_on." + imgType;				//		alert( imgArray[imgOnName].src );				//		alert( imgName + "_on." + imgType);			imgOffName  = imgName + 'Off' 			imgArray[imgOffName] = new Image(imgWidth,imgHeight)			imgArray[imgOffName].src = subdir + "/" + imgName + "_off." + imgType;		}	}	loadImages(mainMenuData, mainMenuImageArray, 'imgs',145,24,'gif');	function flipCollImg(imgName,onOff){		imgObj = eval('document.' + imgName)		if (onOff==1){				//imgObj.src = menuImageArray[(imgName + 'On' )].src;			imgObj.src = eval('collectionMenuImageArray.'+ imgName + 'On.src');		}else {			//imgObj.src = menuImageArray[(imgName + 'Off' )].src;			imgObj.src = eval('collectionMenuImageArray.'+ imgName + 'Off.src');		}	}		function flipImg(imgName,onOff){		imgObj = eval('document.' + imgName)		if (onOff==1){				//imgObj.src = menuImageArray[(imgName + 'On' )].src;			imgObj.src = eval('mainMenuImageArray.'+ imgName + 'On.src');		}else {			//imgObj.src = menuImageArray[(imgName + 'Off' )].src;			imgObj.src = eval('mainMenuImageArray.'+ imgName + 'Off.src');		}	}//---------------------------------------// end: main menu data/functions//---------------------------------------