var browsertype=false;
if((navigator.appName=="Netscape")&&(parseInt(navigator.appVersion)>=3)) browsertype=true;
if((navigator.appName=="Microsoft Internet Explorer")&&(parseInt(navigator.appVersion)>=4)) browsertype=true;

            if (document.images) { 
            img1on = new Image(); 
            img1on.src = "nav/homeon.gif"; 
            img2on = new Image(); 
            img2on.src = "nav/artistson.gif";
            img3on = new Image(); 
            img3on.src = "nav/programon.gif"; 
            img4on = new Image(); 
            img4on.src = "nav/ticketson.gif";  
            img5on = new Image(); 
            img5on.src = "nav/youtubeon.gif";  
            img6on = new Image(); 
            img6on.src = "nav/locationon.gif"; 
            img7on = new Image(); 
            img7on.src = "nav/accomon.gif"; 
            img8on = new Image(); 
            img8on.src = "nav/blogon.gif"; 			

			img1off = new Image(); 
            img1off.src = "nav/homeoff.gif"; 
            img2off = new Image(); 
            img2off.src = "nav/artistsoff.gif";
            img3off = new Image(); 
            img3off.src = "nav/programoff.gif";
            img4off = new Image(); 
            img4off.src = "nav/ticketsoff.gif"; 
            img5off = new Image(); 
            img5off.src = "nav/youtubeoff.gif"; 
            img6off = new Image(); 
            img6off.src = "nav/locationoff.gif";
            img7off = new Image(); 
            img7off.src = "nav/accomoff.gif";
            img8off = new Image(); 
            img8off.src = "nav/blogoff.gif";			
        } 

// activate 
function imgon (imgName) { 
         if (document.images) { 
             document[imgName].src = eval (imgName + "on.src") ; 

} 

} 

// deactivate 
function imgoff (imgName) { 
         if (document.images) { 
             document[imgName].src = eval(imgName + "off.src"); 
           } 
 }
