<!-- hide this script from non-javascript-enabled browsers

/* Function that swaps images. */

function di20(id, newSrc,imgstat) {
    var theImage = FWFindImage(document, id, 0);
      if (theImage) {
        theImage.src = newSrc;
	  }
}

/* Functions that track and set toggle group button states. */

function FWFindImage(doc, name, j) {
    var theImage = false;
    if (doc.images) {
        theImage = doc.images[name];
    }
    if (theImage) {
        return theImage;
    }
    if (doc.layers) {
        for (j = 0; j < doc.layers.length; j++) {
            theImage = FWFindImage(doc.layers[j].document, name, 0);
            if (theImage) {
                return (theImage);
            }
        }
    }
    return (false);
}



function preloadImages() { //v1.2
  if (document.images) {
    var imgFiles = preloadImages.arguments;
    var preloadArray = new Array();
    for (var i=0; i<imgFiles.length; i++) {
      preloadArray[i] = new Image;
      preloadArray[i].src = imgFiles[i];
    }
  }
}
// stop hiding -->
preloadImages ('../img/41_.jpg','../img/42_.jpg','../img/43_.jpg','../img/44_.jpg');


// stop hiding -->