<!--
// popup window //
var newWindow = null
function makeNewWindow(theURL,winName,features) { 
	newWindow = window.open(theURL,winName,features);
	newWindow.location = theURL;
	newWindow.focus();
}
var navArray = 	[
					 ['site_images/global_but_prod_off.jpg','site_images/global_but_prod_on.jpg','gnav01']
					,['site_images/global_but_fore_off.jpg','site_images/global_but_fore_on.jpg','gnav02']
					,['site_images/global_but_trai_off.jpg','site_images/global_but_trai_on.jpg','gnav03']
					,['site_images/global_but_even_off.jpg','site_images/global_but_even_on.jpg','gnav04']
					,['site_images/global_but_curr_off.jpg','site_images/global_but_curr_on.jpg','gnav05']
					,['site_images/global_but_resu_off.jpg','site_images/global_but_resu_on.jpg','gnav06']
					,['site_images/global_but_port_off.jpg','site_images/global_but_port_on.jpg','gnav07']
				];
// Preload Nav Image Rollover Resources //
function preloadImages() {
		for (var x = 0; x < navArray.length; x++) {
			eval(navArray[x][2] + '_over = new Image()');
    		eval(navArray[x][2] + '_over.src = "' + navArray[x][1] + '"');
			eval(navArray[x][2] + ' = new Image()');
    		eval(navArray[x][2] + '.src = "' + navArray[x][0] + '"');
		}
}
// Preload All Menu Resources //
preloadImages();
// -->


