/* Process page names and locations so functions
   below have access to required information */
    var siteName = "Biltmore Direct, Inc.";
    var pg  = window.location.pathname;
       if (pg =="/")
            pg = "index.html";

/* setup page links and text names */
    var hdtxt = {
        'index.html':"Home",
        'page2.html':"What's New",
        'page3.html':"List Brokerage",
        'page5.html':"Computer Services",
        'page7.html':"Analytic Services",
        'page10.html':"Contact Us"
      };

/* Returns text header based on page location */

function pagetitle() {
    var txt = pg ? pg.substring(0,pg.length) : 'index.html';

	if (hdtxt[txt].indexOf("Home") != -1) {
	    hdtxt[txt] = siteName;
	}
    return hdtxt[txt];
}

/* Returns main navigation links as an array */
function navlinks(className,noFormat) {
    var formatLinks = new Array();
    pg = pg || 'index.html';
    for (var prp in hdtxt) {
        classN = !noFormat            ?
             (pg.indexOf(prp) != -1) ? "current" : className : className;

	    formatLinks.push('<a HREF="' + prp + '" CLASS="' + classN + '">' + hdtxt[prp] + '</a>');
	}
	return formatLinks;
}

