function mkLeftNav_HS(parent, pathToTop, current) {
    addNewElt(parent, "p", "spacer", " ");
    var td = addNewElt(parent, "div", "title");
    
    //    var cur = addElt(td, mkCurrentLiImg(pathToTop));
    var title = addNewElt(td, "span", "title", mkLink("index.html", "Heavens Speak"));
    /////    title.setAttribute("style", "margin-left: -2px;");
    addNewElt(parent, "p", "spacer", " ");
    var ul = addNewElt(parent, "ul");
    addNewElt(ul, "li", currentLiID("Contruction", current), mkLink("HS_Construction.html", "Construction"));
    addNewElt(ul, "li", currentLiID("Software", current), mkLink("HS_Software.html", "Software"));
    addNewElt(ul, "li", currentLiID("Music", current), mkLink("HS_Music.html", "Music"));
    addNewElt(ul, "li", currentLiID("StarMyths", current), mkLink("HS_StarMyths.html", "Star Myths"));
    addNewElt(ul, "li", currentLiID("Listen", current), mkLink("HS_Listen.html", "Listen!"));
    addNewElt(ul, "li", currentLiID("Installations", current), mkLink("HS_Installations.html", "Installations"));
}

