/*-------------------- for image mouseover used in fuselage detail pages --------------------*/
// ImageManipulation - check if the browser we're using can manipulate document images.
function ImageManipulation() {
        if (document.images)
                return true;
        else
                return false;
}
// loadImage
function loadImage(imageURL) {
        if (gImageCapableBrowser) {
                document.image.src = imageURL;
                return false;
        }
        else {
                return true;
        }
}
// gImageCapableBrowser? Set up
// a global variable so that we don't have to keep calling a function
// (useful if the function becomes costly to compute).
gImageCapableBrowser = ImageManipulation();