//SET YOUR DEFAULT PAGE BELOW.
var defaultPage = "default.html"
var globalNav = "<ul id='top-navigation'>"+
					"<li class='home active'><a href='/index.html'>Home</a></li>"+
					"<li class='products'><a href='/products-services/default.html'>Products & Services</a>"+
					  "<ul>"+
						"<li><a href='/products-services/legal-desktop.html'>Corprasoft Legal Desktop®</a></li>"+
						"<li><a href='/products-services/ebilling.html'>Corprasoft eBilling™</a></li>"+
						"<li><a href='/products-services/chief-legal.html'>Chief Legal Officer®</a></li>"+
						"<li><a href='/products-services/legal-intelligence.html'>Corprasoft Legal Business Intelligence</a></li>"+
						"<li class='last'><a href='/products-services/integration-customization.html'>Professional Services</a></li>"+
						
					  "</ul>"+
					"</li>"+
					"<li class='cdl'><a href='/products-services/cdl-global-deployment.html'>CLD Global Deployment</a></li>"+
					"<li class='about'><a href='/about-us/default.html'>About Us</a>"+
					  "<ul>"+
						"<li><a href='/about-us/leadership.html'>Our Leadership</a></li>"+
						"<li><a href='/about-us/history.html'>Our History</a></li>"+
						"<li><a href='/about-us/people.html'>Our People</a></li>"+
						"<li><a href='/about-us/partners.html'>Our Partners</a></li>"+
						"<li><a href='/about-us/references.html'>Our Customers</a></li>"+
						"<li><a href='/about-us/careers.html'>Careers</a></li>"+
						"<li class='last'><a href='/location.html'>Location</a></li>"+
					  "</ul>"+
					 "</li>"+
					"<li class='support'><a href='/technical-support.html'>Support</a></li>"+
					"<li class='media'><a href='/media-room/default.html'>Media Room</a>"+
					 "</li>"+					
				"</ul>";

var pathName = new String(location.pathname);//Firefox represents the href value as /filename.html
var fullHref = new String(location.href);//IE represents the href value as http://www.domain.com/filename.html



/*if(fullHref.charAt(fullHref.length-1) == "/"){
	fullHref = fullHref + defaultPage;
}

//set '/' to the correct default Page
if(pathName =="/"){
	pathName = "/"+defaultPage;
}*/

//write the navigation
document.write(globalNav);


/*var navList = document.getElementsByTagName('LI');
for(i in navList){
	if(navList[i].hasChildNodes){
		if(navList[i].firstChild.attributes.href){
			var hrefPath = navList[i].firstChild.attributes.href.value;
			if((hrefPath == pathName) || (fullHref == hrefPath)){
				if(navList[i].className != "dyoh"){
					navList[i].className +="active";
				}
			}
		}
	}
}*/




