


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

         if (document.images) {

 //  site rollovers

				newsbloff = new Image(); newsbloff.src = base + "news_bl_img.gif";
				newsblon = new Image(); newsblon.src = base + "news_bl_img_sel.gif";
                 
				newsbroff = new Image(); newsbroff.src = base + "news_br_img.gif";
				newsbron = new Image(); newsbron.src = base + "news_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";
				
				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");
         }
}

