<!--
	<!-- Main Nav Rollover images -->
	if (document.images) {            // Active Images
	<!------------------- -->
    lifterson = new Image();      
    lifterson.src = "../img/circle_lifters_on.gif";

	lockerson = new Image();      
    lockerson.src = "../img/circle_lockers_on.gif";
		
	otheron = new Image();      
    otheron.src = "../img/circle_other_on.gif";
		
	tapkiton = new Image();      
    tapkiton.src = "../img/circle_tapkit_on.gif";
		
	automatedon = new Image();      
    automatedon.src = "../img/circle_automated_on.gif";
	
	videoson = new Image();      
    videoson.src = "../img/circle_videos_on.gif";
						
	
	<!------------------- -->
    liftersoff = new Image();      
    liftersoff.src = "../img/circle_lifters_off.gif";
	
	lockersoff = new Image();      
    lockersoff.src = "../img/circle_lockers_off.gif";	
	
	otheroff = new Image();      
    otheroff.src = "../img/circle_other_off.gif";
	
	tapkitoff = new Image();      
    tapkitoff.src = "../img/circle_tapkit_off.gif";
	
	automatedoff = new Image();      
    automatedoff.src = "../img/circle_automated_off.gif";	
	
	videosoff = new Image();      
    videosoff.src = "../img/circle_videos_off.gif";
		
	<!------------------- -->
	
				}
	// Function to 'activate' images.
	function imgOn(imgName) {
  	 if (document.images) {
    	 document[imgName].src = eval(imgName + "on.src");
      }
		}

	// Function to 'deactivate' images.
	function imgOff(imgName) {
    if (document.images) {
      document[imgName].src = eval(imgName + "off.src");
    }
	}
	// -->
	