// constructor 
		if (document.images) {           
			
			menu1on = new Image();
			menu1on.src = "../CorpImages/nav_about_neo1.gif";
			menu1off = new Image();
			menu1off.src = "../CorpImages/nav_about_neo0.gif";

			menu2on = new Image();
			menu2on.src = "../CorpImages/nav_web_app1.gif";
			menu2off = new Image();
			menu2off.src = "../CorpImages/nav_web_app0.gif";

			menu3on = new Image();
			menu3on.src = "../CorpImages/nav_services1.gif";
			menu3off = new Image();
			menu3off.src = "../CorpImages/nav_services0.gif";

			menu4on = new Image();
			menu4on.src = "../CorpImages/nav_clients_port1.gif";
			menu4off = new Image();
			menu4off.src = "../CorpImages/nav_clients_port0.gif";

			menu5on = new Image();
			menu5on.src = "../CorpImages/nav_metrics1.gif";
			menu5off = new Image();
			menu5off.src = "../CorpImages/nav_metrics0.gif";
			
			menu6on = new Image();
			menu6on.src = "../CorpImages/nav_careers1.gif";
			menu6off = new Image();
			menu6off.src = "../CorpImages/nav_careers0.gif";
			
			menu7on = new Image();
			menu7on.src = "../CorpImages/header_contact1.gif";
			menu7off = new Image();
			menu7off.src = "../CorpImages/header_contact0.gif";
			
			menu8on = new Image();
			menu8on.src = "../CorpImages/header_client_login1.gif";
			menu8off = new Image();
			menu8off.src = "../CorpImages/header_client_login0.gif";
			
			
			
		}
		function funkOn(imgName) {
			if (document.images) {
				document[imgName].src = eval(imgName + "on.src");
			}

		}
		function funkOff(imgName) {
			if (document.images) {
				document[imgName].src = eval(imgName + "off.src");
			}
		}
		
function link(sTitle, sURL) { 
   this.title = sTitle
   this.url = sURL 
} 

function copyRight() {
	var d = new Date;
	return d.getYear().toString();
}

function writeFooter() {	

	// Create new main array. 
	var footerLinks = new Array() 
	
	// Stuff main array entries with objects. 
	footerLinks[0] = new link("About NEO", "../AboutNEO/AboutNEO.html") 
	footerLinks[1] = new link("Web Applications", "../Applications/Applications.html") 
	
	footerLinks[2] = new link("Services", "../Services/Services.htm") 
	footerLinks[3] = new link("Clients", "../Clients/Clients.html") 
	footerLinks[4] = new link("Metrics", "../Metrics/Metrics.html") 
	footerLinks[5] = new link("Careers", "../Careers/Careers.html") 
	
	footerLinks[6] = new link("Contact Us", "../AboutNEO/ContactUS.html") 
	footerLinks[7] = new link("Client Log In", "https://www.neoinc.com/neologin") 
	footerLinks[8] = new link("Terms of Use", "http://www.neoinc.com/NEOSharedWCI/TermsOfUse.htm") 

	
	for (var i = 0; i <= 5; i++)
		{
		if ((i > 0 ) && (i <= 5)) {document.write(' | ');}
		document.write('<a href=' + footerLinks[i].url + '>' + footerLinks[i].title + '</a>')
	}
	
	document.write ('<br>NEO, Inc ©1995-' + copyRight() + ' | Tel: 888-636-4621 | ')
	
	for (var i = 6; i <= 8; i++)
		{
		if ((i > 6 ) && (i <= 8)) {document.write(' | ');}
		document.write('<a href=' + footerLinks[i].url + '>' + footerLinks[i].title + '</a>')
	}
	
	/*

	<a href="../AboutNEO.html">About NEO</a> | 
	<a href="../Applications/Applications.html">Web Applications</a> | 
	<a href="../Services/Services.htm">Services</a> | 
	<a href="../Clients/Clients.html">Clients & Portfolio</a> | 
	<a href="../Metrics/Metrics.html">Metrics</a> | 
	<a href="../Careers/Careers.html">Careers</a>
	
	<br>NEO, Inc ©2004 | Tel: 888-636-4621 | 
	
	<a href="../AboutNEO/ContactUS.html">Contact Us</a> | 
	<a href="#">Client Log In</a> | 
	<a href="#">Terms of Us</a>
	*/

}