<!--

/*
--------------------------------------------------------------
 Image rollover
--------------------------------------------------------------
*/

function Rollover (strImageName, strFileName) {
	document[strImageName].src = strFileName;
	}

function RolloverCSS (strLayer, strImageName, strFileName) {
	var DOM;

	if (bIsIEPlus) {
		document[strImageName].src = strFileName;
		}
	else if (bIsNavPlus) {
		DOM = eval('document.' + strLayer);
		DOM.document[strImageName].src = strFileName;
		}
	}


/*
--------------------------------------------------------------
 Loads images into the browser's cache for later use
 Usage: WM_preloadImages('image 1 URL', 'image 2 URL', 'image 3 URL', ...);
--------------------------------------------------------------
*/

function WM_preloadImages() {

  if (document.images) {
    if (typeof(document.WM) == 'undefined'){
      document.WM = new Object();
    }
    document.WM.loadedImages = new Array();
    var argLength = WM_preloadImages.arguments.length;
    for(arg=0;arg<argLength;arg++) {
      document.WM.loadedImages[arg] = new Image();
      document.WM.loadedImages[arg].src = WM_preloadImages.arguments[arg];
    }
  }
}


// -->