if (document.images) {            // Active Images						img1on = new Image();                  img1on.src = "graphics/subpg/subpg_band_on.gif";			img2on = new Image();                  img2on.src = "graphics/subpg/subpg_news_on.gif";						img3on = new Image();                  img3on.src = "graphics/subpg/subpg_gigs_on.gif";						img4on = new Image();                  img4on.src = "graphics/subpg/subpg_media_on.gif";						img5on = new Image();                  img5on.src = "graphics/subpg/subpg_contact_on.gif";						img6on = new Image();                  img6on.src = "graphics/subpg/subpg_links_on.gif";						img1off = new Image();             img1off.src = "graphics/subpg/subpg_band_off.gif";						img2off = new Image();             img2off.src = "graphics/subpg/subpg_news_off.gif";						img3off = new Image();             img3off.src = "graphics/subpg/subpg_gigs_off.gif";						img4off = new Image();             img4off.src = "graphics/subpg/subpg_media_off.gif";						img5off = new Image();             img5off.src = "graphics/subpg/subpg_contact_off.gif";						img6off = new Image();             img6off.src = "graphics/subpg/subpg_links_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");        }}