<!--
// Check for version 4 browsers
NS4 = (document.layers) ? 1 : 0;
IE4 = (document.all) ? 1 : 0;
IE5 = (document.all) ? 1 : 0;
ver4 = (NS4 || IE4 || IE5) ? 1 : 0;

// Load Images if Version 4
if (ver4)
{
	path1 = "../images/pages/";
	aboon = new Image; aboon.src = path1 + "about2.gif";
	abooff = new Image; abooff.src = path1 + "about.gif";
	newon = new Image; newon.src = path1 + "newsletter2.gif";
	newoff = new Image; newoff.src = path1 + "newsletter.gif";
	proon = new Image; proon.src = path1 + "products2.gif";
	prooff = new Image; prooff.src = path1 + "products.gif";
	claon = new Image; claon.src = path1 + "classes2.gif";
	claoff = new Image; claoff.src = path1 + "classes.gif";
	cluon = new Image; cluon.src = path1 + "clubs2.gif";
	cluoff = new Image; cluoff.src = path1 + "clubs.gif";
	arton = new Image; arton.src = path1 + "articles2.gif";
	artoff = new Image; artoff.src = path1 + "articles.gif";
	conon = new Image; conon.src = path1 + "contact2.gif";
	conoff = new Image; conoff.src = path1 + "contact.gif";
	homon = new Image; homon.src = path1 + "home2.gif";
	homoff = new Image; homoff.src = path1 + "home.gif";
	mapon = new Image; mapon.src = path1 + "maps2.gif";
	mapoff = new Image; mapoff.src = path1 + "maps.gif";
	drion = new Image; drion.src = path1 + "driving2.gif";
	drioff = new Image; drioff.src = path1 + "driving.gif";
	topon = new Image; topon.src = path1 + "top2.gif";
	topoff = new Image; topoff.src = path1 + "top.gif";
}

// Mouse Events
function rollOn(imgObj)
{
	if (ver4)
	{
		document[imgObj].src = eval(imgObj + "on.src");
	}
}
function rollOff(imgObj)
{
	if (ver4)
	{
		document[imgObj].src = eval(imgObj + "off.src");
	}
}
function callDate() 
{
	now = new Date();
	today = now.getDate();
	m = now.getMonth() + 1;
	year = now.getYear();
	currDate = m + '/' + today + '/2000';
	return currDate;
}
//-->
