<!--

        if (document.images) {            // Active Images
            
                
                imgigiftshopon = new Image();      
                imgigiftshopon.src = "/images/igiftshopon.gif";
                imgimagon = new Image();      
                imgimagon.src = "/images/imagon.gif";
                imgigmon = new Image();      
                imgigmon.src = "/images/igmon.gif";
                imgijafon = new Image();      
                imgijafon.src = "/images/ijafon.gif";                
                imgtron = new Image();      
                imgtron.src = "/images/tron.gif";  
                imgnlon = new Image();      
                imgnlon.src = "/images/nlon.gif";                 
                imgvideoon = new Image();      
                imgvideoon.src = "/images/video_on.gif";   
                     
                imgigiftshopoff = new Image(); 
                imgigiftshopoff.src = "/images/igiftshopoff.gif";
                imgimagoff = new Image(); 
                imgimagoff.src = "/images/imagoff.gif";
                imgigmoff = new Image(); 
                imgigmoff.src = "/images/igmoff.gif";
                imgijafoff = new Image(); 
                imgijafoff.src = "/images/ijafoff.gif";
                imgtroff = new Image();      
                imgtroff.src = "/images/troff.gif";  
                imgnloff = new Image(); 
                imgnloff.src = "/images/nloff.gif";
                imgvideooff = new Image(); 
                imgvideooff.src = "/images/video_off.gif";
                
        }

// Function to 'activate' images.
function imgOn(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "on.src");
        }
}

// Function to 'deactivate' images.
function imgOff(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "off.src");
        }
}

// -->