

function preloadImage(theSource) {
var img = new Image();
img.src = theSource;

}

function changeImage(theSource) {
document.images['grandeImage'].src = theSource;
}
