<!--
// Global Variables

// Create Image Object Array
if (is.norm)
	{
	var object=new Array();

	// Objects to start with.
object['nav1'] = new objectdata(43,22,jppath+"images/nav/main-off-01-01.gif");
object['nav2'] = new objectdata(59,22,jppath+"images/nav/main-off-01-02.gif");
object['nav3'] = new objectdata(72,22,jppath+"images/nav/main-off-01-03.gif");
object['nav4'] = new objectdata(36,22,jppath+"images/nav/main-off-01-04.gif");
object['nav5'] = new objectdata(30,22,jppath+"images/nav/main-off-01-05.gif");
object['nav6'] = new objectdata(41,22,jppath+"images/nav/main-off-01-06.gif");
object['nav7'] = new objectdata(71,22,jppath+"images/nav/main-off-01-07.gif");
object['nav8'] = new objectdata(98,22,jppath+"images/nav/main-off-01-08.gif");
object['nav9'] = new objectdata(67,22,jppath+"images/nav/main-off-01-09.gif");
object['nav10'] = new objectdata(78,22,jppath+"images/nav/main-off-01-10.gif");
object['nav11'] = new objectdata(112,22,jppath+"images/nav/main-off-01-11.gif");
object['nav12'] = new objectdata(60,22,jppath+"images/nav/main-off-01-12.gif");
object['nav13'] = new objectdata(100,15,jppath+"images/nav/rnav1-off.gif");
object['nav14'] = new objectdata(100,15,jppath+"images/nav/rnav2-off.gif");
object['nav15'] = new objectdata(100,15,jppath+"images/nav/rnav3-off.gif");
object['nav16'] = new objectdata(120,50,jppath+"images/nav/rba1-off.gif");
object['nav17'] = new objectdata(120,50,jppath+"images/nav/rba2-off.gif");
object['nav18'] = new objectdata(120,50,jppath+"images/nav/rba3-off.gif");
object['nav19'] = new objectdata(120,50,jppath+"images/nav/rba4-off.gif");
object['nav20'] = new objectdata(67,24,jppath+"images/nav/bot-off-01-01.gif");
object['nav21'] = new objectdata(68,24,jppath+"images/nav/bot-off-01-02.gif");
object['nav22'] = new objectdata(73,24,jppath+"images/nav/bot-off-01-03.gif");
object['nav23'] = new objectdata(118,81,jppath+"images/nav/top-map-off-01-02.gif");
object['nav24'] = new objectdata(66,81,jppath+"images/nav/top-map-off-01-03.gif");
object['subnav17'] = new objectdata(124,12,jppath+"images/subnav/employment_off-01-01.gif");
object['subnav18'] = new objectdata(149,12,jppath+"images/subnav/employment_off-01-03.gif");

// add more objects above this line
	// Hi-Lite Objects.
object['nav1h'] = new objectdata(43,22,jppath+"images/nav/main-on-01-01.gif");
object['nav2h'] = new objectdata(59,22,jppath+"images/nav/main-on-01-02.gif");
object['nav3h'] = new objectdata(72,22,jppath+"images/nav/main-on-01-03.gif");
object['nav4h'] = new objectdata(36,22,jppath+"images/nav/main-on-01-04.gif");
object['nav5h'] = new objectdata(30,22,jppath+"images/nav/main-on-01-05.gif");
object['nav6h'] = new objectdata(41,22,jppath+"images/nav/main-on-01-06.gif");
object['nav7h'] = new objectdata(71,22,jppath+"images/nav/main-on-01-07.gif");
object['nav8h'] = new objectdata(98,22,jppath+"images/nav/main-on-01-08.gif");
object['nav9h'] = new objectdata(67,22,jppath+"images/nav/main-on-01-09.gif");
object['nav10h'] = new objectdata(78,22,jppath+"images/nav/main-on-01-10.gif");
object['nav11h'] = new objectdata(112,22,jppath+"images/nav/main-on-01-11.gif");
object['nav12h'] = new objectdata(60,22,jppath+"images/nav/main-on-01-12.gif");
object['nav13h'] = new objectdata(100,15,jppath+"images/nav/rnav1-on.gif");
object['nav14h'] = new objectdata(100,15,jppath+"images/nav/rnav2-on.gif");
object['nav15h'] = new objectdata(100,15,jppath+"images/nav/rnav3-on.gif");
object['nav16h'] = new objectdata(120,50,jppath+"images/nav/rba1-on.gif");
object['nav17h'] = new objectdata(120,50,jppath+"images/nav/rba2-on.gif");
object['nav18h'] = new objectdata(120,50,jppath+"images/nav/rba3-on.gif");
object['nav19h'] = new objectdata(120,50,jppath+"images/nav/rba4-on.gif");
object['nav20h'] = new objectdata(67,24,jppath+"images/nav/bot-on-01-01.gif");
object['nav21h'] = new objectdata(68,24,jppath+"images/nav/bot-on-01-02.gif");
object['nav22h'] = new objectdata(73,24,jppath+"images/nav/bot-on-01-03.gif");
object['nav23h'] = new objectdata(118,81,jppath+"images/nav/top-map-on-01-02.gif");
object['nav24h'] = new objectdata(66,81,jppath+"images/nav/top-map-on-01-03.gif");
object['subnav17h'] = new objectdata(124,12,jppath+"images/subnav/employment_on-01-01.gif");
object['subnav18h'] = new objectdata(149,12,jppath+"images/subnav/employment_on-01-03.gif");

// add more objects above this line
	}

// create object array data
function objectdata(hsize,vsize,hiliteimg) {
if(is.norm)
	{
	this.himg=new Image(hsize,vsize);
	this.himg.src=hiliteimg;
	}
}
// End of create image object array

// mouseOver
function Swap(name,vis) {
if(is.norm)
	{
	document[name].src=object[name+vis].himg.src;
	}
}
//-->