// Image Switch and essential functions// this script is on every page, it has the standard image roll, the fix for netscapes resize issues and// the opening image selection// Jan 8 2000// v.4bvar turnDivOn ="";var turnDivOff ="";var path = "../images/interior/"; //save text later onfunction navImg(sourceOn,sourceOff,sourceRoll) //not necessary to pre-load all, if not going to preload switch from this.x.src to this.x{	if(document.images)	{		this.on 		= path + sourceOn;		this.off 		= path + sourceOff;		this.roll 		= new Image();		this.roll.src 	= path + sourceRoll;	}}var navArray = new Array(); //the single most important array, used in almost every scriptnavArray["about_in"]	= new navImg("btn_IN_about_on.gif","btn_IN_about_off.gif","btn_IN_about_on.gif");navArray["locations_in"]= new navImg("btn_IN_locations_on.gif","btn_IN_locations_off.gif","btn_IN_locations_on.gif");navArray["menus_in"]	= new navImg("btn_IN_menus_on.gif","btn_IN_menus_off.gif","btn_IN_menus_on.gif");navArray["parties_in"]	= new navImg("btn_IN_pp_on.gif","btn_IN_pp_off.gif","btn_IN_pp_on.gif");navArray["process_in"]	= new navImg("btn_IN_process_on.gif","btn_IN_process_off.gif","btn_IN_process_on.gif");function navRoll(number){	if(document.images) 	{		document.images[number].src = navArray[number].roll.src;			}}function navUnRoll(number){	if(document.images)	{		document.images[number].src = navArray[number].off;					}}var windowVar = 0;function fixLayers(){   if(document.layers)   	{		if(windowVar==1)		{			location.reload();			windowVar = 0;			return false;					}	 }}  