// 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/"; //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["properties"]= new navImg("btn_properties_on.gif","btn_properties_off.gif","btn_properties_on.gif");navArray["about"]= new navImg("btn_about_on.gif","btn_about_off.gif","btn_about_on.gif");navArray["functions"]= new navImg("btn_functions_on.gif","btn_functions_off.gif","btn_functions_on.gif");navArray["space"]= new navImg("btn_officespace_on.gif","btn_officespace_off.gif","btn_officespace_on.gif");navArray["contact"]= new navImg("btn_contactus_on.gif","btn_contactus_off.gif","btn_contactus_on.gif");navArray["directions"]= new navImg("btn_directions_on.gif","btn_directions_off.gif","btn_directions_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;					}	 }}  