
// Active Images
		if (document.images) {            
		            img1on = new Image();      
		            img1on.src = "Images/financial-on.jpg";
		            img1off = new Image(); 
		            img1off.src = "Images/financial.jpg";
					
					img2on = new Image();      
		            img2on.src = "Images/health-on.jpg";
		            img2off = new Image(); 
		            img2off.src = "Images/health.jpg"; 
					
					img3on = new Image();      
		            img3on.src = "Images/general01-on.jpg";
		            img3off = new Image(); 
		            img3off.src = "Images/general01.jpg"; 
					
					img4on = new Image();      
		            img4on.src = "Images/general02-on.jpg";
		            img4off = new Image(); 
		            img4off.src = "Images/general02.jpg";
					
					img5on = new Image();      
		            img5on.src = "Images/general04-on.jpg";
		            img5off = new Image(); 
		            img5off.src = "Images/general04.jpg"; 
					        }
		
// 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");
		        }
		}
		
		

