<!--

if (document.images) 

		{       //if image object is available 
	
	
			img1on = new Image();		// MouseOver Images Begin Here
			img1on.src = "core_images/navigation/tenants_on.jpg"; 
			img2on = new Image();	
			img2on.src = "core_images/navigation/litigation_on.jpg"; 
			img3on = new Image();	
			img3on.src = "core_images/navigation/action_on.jpg"; 
			img4on = new Image();	
			img4on.src = "core_images/navigation/friends_on.jpg";  
			img5on = new Image();	
			img5on.src = "core_images/navigation/about_on.jpg";
			img6on = new Image();	
			img6on.src = "core_images/navigation/ed_on.jpg";
			img7on = new Image();	
			img7on.src = "core_images/navigation/ads_on.jpg";
			img8on = new Image();	
			img8on.src = "core_images/navigation/ag_on.jpg";
			img9on = new Image();	
			img9on.src = "core_images/navigation/tfree_on.jpg";						
						
						
			img1off = new Image();		  	// MouseOut Images Begin Here
			img1off.src = "core_images/navigation/tenants_off.jpg"; 
			img2off = new Image();	
			img2off.src = "core_images/navigation/litigation_off.jpg"; 
			img3off = new Image();	
			img3off.src = "core_images/navigation/action_off.jpg"; 
			img4off = new Image();	
			img4off.src = "core_images/navigation/friends_off.jpg"; 
			img5off = new Image();	
			img5off.src = "core_images/navigation/about_off.jpg"; 
			img6off = new Image();	
			img6off.src = "core_images/navigation/ed_off.jpg";
			img7off = new Image();	
			img7off.src = "core_images/navigation/ads_off.jpg";						
			img8off = new Image();	
			img8off.src = "core_images/navigation/ag_off.jpg";
			img9off = new Image();	
			img9off.src = "core_images/navigation/tfree_off.jpg";						
						
			}

	function imgOn(imgName) {
				
				if (document.images) {
	
					document[imgName].src = eval(imgName + "on.src");        
					
					}

				}

	function imgOff(imgName) {

		if (document.images) {

			document[imgName].src = eval(imgName + "off.src");        

			}
	
		}
		
-->