if (document.images)
{                 
featureson = new Image();           
featureson.src = "features_on.gif";
featuresoff = new Image();
featuresoff.src = "features_off.gif";

tattooson = new Image();           
tattooson.src = "tattoos_on.gif";             
tattoosoff = new Image();         
tattoosoff.src = "tattoos_off.gif";

piercingson = new Image();           
piercingson.src = "piercings_on.gif";             
piercingsoff = new Image();         
piercingsoff.src = "piercings_off.gif";

musicon = new Image();           
musicon.src = "music_on.gif";             
musicoff = new Image();         
musicoff.src = "music_off.gif";

gearon = new Image();
gearon.src = "gear_on.gif";
gearoff = new Image();
gearoff.src = "gear_off.gif";

advertiseon = new Image();
advertiseon.src = "advertise_on.gif";
advertiseoff = new Image();
advertiseoff.src = "advertise_off.gif";

linkson = new Image();           
linkson.src = "links_on.gif";             
linksoff = new Image();         
linksoff.src = "links_off.gif";

newsletteron = new Image();
newsletteron.src = "newsletter_on.gif";
newsletteroff = new Image();
newsletteroff.src = "newsletter_off.gif";

forumon = new Image();
forumon.src = "forum_on.gif";
forumoff = new Image();
forumoff.src = "forum_off.gif";

contacton = new Image();
contacton.src = "contact_on.gif";
contactoff = new Image();
contactoff.src = "contact_off.gif";

linkson = new Image();
linkson.src = "links_on.gif";
linksoff = new Image();
linksoff.src = "links_off.gif";
}


        function rollover(imgName) {
		if (((navigator.appName == "Microsoft Internet Explorer") && 		
		(navigator.appVersion >= "4")) || ((navigator.appName == "Netscape") && 
		(navigator.appVersion >= "3"))) {        
               imgOn = eval(imgName + "on.src");
               document [imgName].src = imgOn;
               }
               }

       function rollout(imgName) {
       if (((navigator.appName == "Microsoft Internet Explorer") && 		
		(navigator.appVersion >= "4")) || ((navigator.appName == "Netscape") && 				
		(navigator.appVersion >= "3"))) {
               imgOff = eval(imgName + "off.src");
               document [imgName].src = imgOff;
       			}
       			}
				
/*
Here's an empty set of rollovers for copy/pasting:
on = new Image();
on.src = "images/_over.gif";
off = new Image();
off.src = "images/.gif";
<a href="" onMouseOver="rollover('')" onMouseOut="rollout('')">
*/						
