var CurrentPage = window.location.pathname;
CurrentPage = CurrentPage.substring(CurrentPage.lastIndexOf('/') + 1);

var PageCount = 5;
var PageName = new Array
("index.html", "guide.html", "lwb.html", "c_01.html", "direction.html");
var PageLabel = new Array
("Home", "Guide for Patients", "Life with Braces", "Before &amp; After", "Directions");

for (i=0; i<PageCount; i=i+1) {
    if (PageName[i]==CurrentPage || (CurrentPage.length==0 && i==0) ||
        (PageName[i]=="c_01.html" && CurrentPage.substring(0,2)=="c_") ) {
        document.write('<a href="' + PageName[i] + '"');
        document.write('style="background: #acc7fb; ');
        document.write('padding-top: 7px; padding-bottom: 7px;">');
        document.write('&#160;&#160;' + PageLabel[i] + '&#160;&#160;</a>');
    }
    else {
        document.write('<a href="' + PageName [i] + '">');
        document.write('&#160;&#160;' + PageLabel[i] + '&#160;&#160;</a>'); 
    }  
}


