﻿var navURLs  = new Array('../index.html','intro.html', 'attorneys.html','settlement.html', 'info.html', 'contact.html');var linkText = new Array('Home','Introduction', 'Our Attorneys', 'Settlement Process','Free Information','Contact \& Directions');function navbar() {	var navStr= '';	for (var i = 0; i < navURLs.length; i++) {		//	if (location.href != navURLs[i]) {		    	   Uncomment this line and comment 		if (location.href.indexOf(navURLs[i]) == -1) {	// this one when not browsing locally			navStr += '<div id="menu-plain"><a href="' + navURLs[i] + '">' + linkText[i] + '</a></div>'; 			}		}	document.writeln(navStr);		}