<!--
        if (document.images) {            		// BUTTON LABEL

            img01on = new Image();      
            img01on.src = "images/btnLessonsON.gif";		// Lessons
            img11on = new Image();      
            img11on.src = "images/btnRentalsON.gif";		// Rentals
            img21on = new Image();      
            img21on.src = "images/btnEmailON.gif";		// Email
            
            img31on = new Image();
            img31on.src = "images/btnHomeON.gif";		// Home
            img41on = new Image();
            img41on.src = "images/btnRepairON.gif";		// Repair
            img51on = new Image();
            img51on.src = "images/btnMusicON.gif";		// Music
			img61on = new Image();
            img61on.src = "images/btnInstrumentON.gif";		// Instrument
			img71on = new Image();
            img71on.src = "imag3/bulletOn.gif";		// HOME
	    
	    img81on = new Image();
            img81on.src = "imag3/bulletOn.gif";		// HOME
	    img91on = new Image();
            img91on.src = "imag3/bulletOn.gif";		// HOME
		img101on = new Image();
            img101on.src = "imag3/bulletOn.gif";		// HOME
		img111on = new Image();
            img111on.src = "imag3/bulletOn.gif";		// HOME
		img121on = new Image();
            img121on.src = "imag3/bulletOn.gif";		// HOME
						
				

			img01off = new Image(); 
            img01off.src = "images/btnLessons.gif";	// Lessons
            img11off = new Image(); 
            img11off.src = "images/btnRentals.gif";		// Rental
            img21off = new Image(); 
            img21off.src = "images/btnEmail.gif";		// Email
           
            img31off = new Image();
            img31off.src = "images/btnHome.gif";		// Home
            img41off = new Image();
            img41off.src = "images/btnRepair.gif";		// Repair
            img51off = new Image();
            img51off.src = "images/btnMusic.gif";		// Music
			img61off = new Image();
            img61off.src = "images/btnInstrument.gif";		// Instruments
			img71off = new Image();
            img71off.src = "imag3/bulletOff.gif";		// HOME
		img81off = new Image();
            img81off.src = "imag3/bulletOff.gif";		// HOME
		img91off = new Image();
            img91off.src = "imag3/bulletOff.gif";		// HOME
		img101off = new Image();
            img101off.src = "imag3/bulletOff.gif";		// HOME
		img111off = new Image();
            img111off.src = "imag3/bulletOff.gif";		// HOME
		img121off = new Image();
            img121off.src = "imag3/bulletOff.gif";		// HOME
		


        }

// Function to 'activate' images.
function imgOn1(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "on.src");
        }
}

// Function to 'deactivate' images.
function imgOff1(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "off.src");
        }
}

// -->