// PRELOAD ROLLOVER IMAGESvar base = "images/";         if (document.images) { //  site rollovers				contactbloff = new Image(); contactbloff.src = base + "contact_bl_img.gif";				contactblon = new Image(); contactblon.src = base + "contact_bl_img_sel.gif";                 				contactbroff = new Image(); contactbroff.src = base + "contact_br_img.gif";				contactbron = new Image(); contactbron.src = base + "contact_br_img_sel.gif";								homeoff = new Image(); homeoff.src = base + "nav_home_off.gif";				homeon = new Image(); homeon.src = base + "nav_home_on.gif";								artistsoff = new Image(); artistsoff.src = base + "nav_artists_off.gif";				artistson = new Image(); artistson.src = base + "nav_artists_on.gif";								catalogoff = new Image(); catalogoff.src = base + "nav_catalog_off.gif";				catalogon = new Image(); catalogon.src = base + "nav_catalog_on.gif";								newsoff = new Image(); newsoff.src = base + "nav_news_off.gif";				newson = new Image(); newson.src = base + "nav_news_on.gif";}//  SHOWS CURRENT ROLLOVERfunction imgOn(imgName) {         if (document.images) {         document[imgName].src = eval(imgName + "on.src");         }}// HIDES ROLLOVERfunction imgOff(imgName) {		 if (document.images) {         document[imgName].src = eval(imgName + "off.src");         }}
