<!--
var bName = navigator.appName;
var bVersion = navigator.appVersion
if (navigator.appName.indexOf("Netscape") != - 1 && bVersion.indexOf("5.") < 0)
{
	var nc = true;
}
var popTimer1 = false;
var popTimer2 = false;
var popTimer3 = false;
var popTimer4 = false;
var img = "";
path = "images/";
var images = new Array ('contact','features','home','location','request','payment','tips','units');
var ImageObjects = new Array();
for (i = 0; i < images.length; i++) {
	name = images[i];
	ImageObjects[name] = new ImageObject(name); 
	}

function ImageObject(name) {
	//figure out path
	this.up = new Image;
	this.up.src = "images/nav-" + name + "-on.jpg";
	this.dn = new Image;
	this.dn.src = "images/nav-" + name + "-off.jpg";
}

function on(img) {
	document [img].src = ImageObjects[img].up.src;
	
}
function off(img) {
	document [img].src = ImageObjects[img].dn.src;
	
}



img2 = new Image()
seconds = "4";
function imgOne()
{
	setTimeout("imgTwo()", seconds * 1000);
}
function imgTwo()
{
	document.myimg.src = 'images/header-3.jpg';
	setTimeout("imgThree()", seconds * 1000);
}
function imgThree()
{
	document.myimg.src = 'images/header-3-b.jpg';
	setTimeout("imgFour()", seconds * 1000);
}
function imgFour()
{
	document.myimg.src = 'images/header-3-c.jpg';
	setTimeout("imgFive()", seconds * 1000);
}
function imgFive()
{
	document.myimg.src = 'images/header-3-d.jpg';
	setTimeout("imgTwo()", seconds * 1000);
}

//-->
