<!--
// Global Variables

// Create Image Object Array
	var object=new Array();

	object['nav-01'] = new objectdata(63,26,"/Style%20Library/Images/Navigation/nav_off-01.gif");
	object['nav-02'] = new objectdata(66,26,"/Style%20Library/Images/Navigation/nav_off-02.gif");
	object['nav-03'] = new objectdata(82,26,"/Style%20Library/Images/Navigation/nav_off-03.gif");
	object['nav-04'] = new objectdata(60,26,"/Style%20Library/Images/Navigation/nav_off-04.gif");
	object['nav-05'] = new objectdata(73,26,"/Style%20Library/Images/Navigation/nav_off-05.gif");
	object['nav-06'] = new objectdata(107,26,"/Style%20Library/Images/Navigation/nav_off-06.gif");
	object['nav-07'] = new objectdata(110,26,"/Style%20Library/Images/Navigation/nav_off-07.gif");
	object['nav-08'] = new objectdata(76,26,"/Style%20Library/Images/Navigation/nav_off-08.gif");
	object['nav-09'] = new objectdata(147,26,"/Style%20Library/Images/Navigation/nav_off-09.gif");

	object['nav-01_on'] = new objectdata(63,26,"/Style%20Library/Images/Navigation/nav_on-01.gif");
	object['nav-02_on'] = new objectdata(66,26,"/Style%20Library/Images/Navigation/nav_on-02.gif");
	object['nav-03_on'] = new objectdata(82,26,"/Style%20Library/Images/Navigation/nav_on-03.gif");
	object['nav-04_on'] = new objectdata(60,26,"/Style%20Library/Images/Navigation/nav_on-04.gif");
	object['nav-05_on'] = new objectdata(73,26,"/Style%20Library/Images/Navigation/nav_on-05.gif");
	object['nav-06_on'] = new objectdata(107,26,"/Style%20Library/Images/Navigation/nav_on-06.gif");
	object['nav-07_on'] = new objectdata(110,26,"/Style%20Library/Images/Navigation/nav_on-07.gif");
	object['nav-08_on'] = new objectdata(76,26,"/Style%20Library/Images/Navigation/nav_on-08.gif");
	object['nav-09_on'] = new objectdata(147,26,"/Style%20Library/Images/Navigation/nav_on-09.gif");




// create object array data
function objectdata(hsize,vsize,hiliteimg) {
	this.himg=new Image(hsize,vsize);
	this.himg.src=hiliteimg;
}
// End of create image object array

// mouseOver
function Swap(name,vis) {
	document[name].src=object[name+vis].himg.src;
}
//-->