<!--
 {
			//PTC home - on
		ptc_homeon = new Image();           
		ptc_homeon.src = "images/tm_nav_ptchome_f2.jpg";
		
			//PTC home - off
		ptc_homeoff = new Image();          
		ptc_homeoff.src = "images/tm_nav_ptchome.jpg";
		
		
			//Training Home - on
		training_homeon = new Image();           
		training_homeon.src = "images/tm_nav_thome_f2.jpg";
		
			//Training Home - off
		training_homeoff = new Image();          
		training_homeoff.src = "images/tm_nav_thome.jpg";
		
	
			//privacy - on
		privacyon = new Image();           
		privacyon.src = "images/tm_nav_priv_f2.jpg";
		
			//Resources - off
		privacyoff = new Image();          
		privacyoff.src = "images/tm_nav_priv.jpg";		
		
			
			//Instructions - on
		instructionson = new Image();           
		instructionson.src = "images/tm_nav_instruc_f2.jpg";
		
			//Instructions - off
		instructionsoff = new Image();          
		instructionsoff.src = "images/tm_nav_instruc.jpg";
		
	
			//Continuing Education - on
		continuing_educationon = new Image();           
		continuing_educationon.src = "images/tm_nav_conted_f2.jpg";
		
			//Continuing Education - off
		continuing_educationoff = new Image();          
		continuing_educationoff.src = "images/tm_nav_conted.jpg";	
		
			//Start Course Arrow - on
		start_arrowon = new Image();           
		start_arrowon.src = "images/tmhome_startarrow_f2.jpg";
		
			//Start Course Arrow - off
		start_arrowoff = new Image();          
		start_arrowoff.src = "images/tmhome_startarrow.jpg";	
		
		
			//Home Page Arrow #1 - on
		arrow1on = new Image();           
		arrow1on.src = "images/tmhome_rndarrow_f2.jpg";
		
			//Home Page Arrow #1 - off
		arrow1off = new Image();          
		arrow1off.src = "images/tmhome_rndarrow.jpg";
		
		
			//Home Page Arrow #2 - on
		arrow2on = new Image();           
		arrow2on.src = "images/tmhome_rndarrow_f2.jpg";
		
			//Home Page Arrow #2 - off
		arrow2off = new Image();          
		arrow2off.src = "images/tmhome_rndarrow.jpg";
		
		
			//Home Page Arrow #3 - on
		arrow3on = new Image();           
		arrow3on.src = "images/tmhome_rndarrow_f2.jpg";
		
			//Home Page Arrow #3 - off
		arrow3off = new Image();          
		arrow3off.src = "images/tmhome_rndarrow.jpg";
		
		
			//Home Page Arrow #4 - on
		arrow4on = new Image();           
		arrow4on.src = "images/tmhome_rndarrow_f2.jpg";
		
			//Home Page Arrow #4 - off
		arrow4off = new Image();          
		arrow4off.src = "images/tmhome_rndarrow.jpg";
		
		
			//Home Page Arrow #5 - on
		arrow5on = new Image();           
		arrow5on.src = "images/tmhome_rndarrow_f2.jpg";
		
			//Home Page Arrow #5 - off
		arrow5off = new Image();          
		arrow5off.src = "images/tmhome_rndarrow.jpg";


}
function imgAct(imgName) {			// Function to "activate" images.
	{
			document[imgName].src = eval(imgName + "on.src");
	}
}
function imgInact(imgName) {		// Function to "deactivate" images.
	{
			document[imgName].src = eval(imgName + "off.src");
	}
}