<!--

//-----------------------------------------------------------------------
// Changes the image src to the src passed in. IMPORTANT: This first
// parameter is the actual image object. USAGE: within img tag
// pass this as the first parameter
//-----------------------------------------------------------------------
function ImageRollOver(img, src) {
    img.src = src;
}

// -->
