
function navMenu( subDirs ) {
        var cds = "";
        if( subDirs > 0 ) {
                for( var i=0; i<subDirs; i++ ) {
                        cds += "../";
                }
        }
        var tableCode = "<div id=\"navMenu\"><table><tr>";
        tableCode += "<td><a href=\"" + cds + "index.php\">Home</a></td>";
//      tableCode += "</tr><tr>";
        tableCode += "<td><a href=\"" + cds + "message_board/index.php\" target=\"_blank\">Forum</a></td>";
//      tableCode += "</tr><tr>";
//      tableCode += "<td><a href=\"" + cds + "gallery2/index.php\" target=\"_blank\">Photo Gallery</a></td>";
//      tableCode += "</tr><tr>";
        tableCode += "<td><a href=\"" + cds + "html/videos/videos_toc.html\">Videos</a></td>";
//      tableCode += "</tr><tr>";
        tableCode += "<td><a href=\"" + cds + "message_board/viewforum.php?f=13&sid=2735a217169a8e2ea6b4b16b102de1e9\" target=\"_blank\">Upcoming Events</a></td>";
//      tableCode += "</tr><tr>";
        tableCode += "<td><a href=\"" + cds + "html/members.html\">Members</a></td>";
//      tableCode += "</tr><tr>";
        tableCode += "<td><a href=\"" + cds + "html/about.html\">About</a></td>";
//      tableCode += "</tr><tr>";
        tableCode += "<td><a href=\"" + cds + "html/bylaws.html\">Bylaws</a></td>";
//      tableCode += "</tr><tr>";
        tableCode += "<td><a href=\"" + cds + "SWPA_brochure_2009.pdf\">Brochure/Application</a></td>";
//      tableCode += "</tr><tr>";
        tableCode += "<td><a href=\"" + cds + "html/local_resources.html\">Local Resources</a></td>";
        tableCode += "<td><a href=\"" + cds + "html/2010treffen.html\">Treffen</a></td>";
        tableCode += "</tr></table></div>";
        document.write( tableCode );
        return 1;
}

