


// PRELOAD ROLLOVER IMAGES
var base = "images/";

         if (document.images) {

 //  site rollovers

				mainbloff = new Image(); mainbloff.src = base + "home_bl_img.jpg";
				mainblon = new Image(); mainblon.src = base + "home_bl_img_sel.jpg";
                 
				mainbroff = new Image(); mainbroff.src = base + "home_br_img.jpg";
				mainbron = new Image(); mainbron.src = base + "home_br_img_sel.jpg";
				
				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";
				
				newsoff = new Image(); newsoff.src = base + "nav_news_off.gif";
				newson = new Image(); newson.src = base + "nav_news_on.gif";
				
				catalogoff = new Image(); catalogoff.src = base + "nav_catalog_off.gif";
				catalogon = new Image(); catalogon.src = base + "nav_catalog_on.gif";
				
				contactoff = new Image(); contactoff.src = base + "nav_contact_off.gif";
				contacton = new Image(); contacton.src = base + "nav_contact_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");
         }
}
