
var ShopsRootDir = "/~bptecho/bpt/shops/";         // where does it all lead?

function addElement (text, url)
{
	document.writeln("<tr><td class=\"vertical\"><a href=\"" + url +
		"\" class=\"vertical\">" + text + "</a></td></tr>");
}

function menuBar ()
{
    document.writeln("<table>");
    addElement ("Exploratory Program", ShopsRootDir + "exploratory/index.html");
    addElement ("Automotive Technology", ShopsRootDir + "autotech/index.html");
    addElement ("Carpentry", ShopsRootDir + "carpentry/index.html");
    addElement ("Collision Technology", ShopsRootDir + "collision/index.html");
    addElement ("Commercial Design", ShopsRootDir + "comdesign/index.html");
    addElement ("Community Health", ShopsRootDir + "communityhealth/index.html");
    addElement ("Computer & Network Technology", ShopsRootDir + "compnet/index.html");
    addElement ("Computer Information Technology", ShopsRootDir + "cit/index.html");
    addElement ("Cosmetology", ShopsRootDir + "cosmetology/index.html");
    addElement ("Culinary Arts", ShopsRootDir + "culinary/index.html");
    addElement ("Drafting", ShopsRootDir + "drafting/index.html");
    addElement ("Electrical Technology", ShopsRootDir + "electrical/index.html");
    addElement ("Graphic Design", ShopsRootDir + "graphicdesign/index.html");
    addElement ("HVAC", ShopsRootDir + "hvac/index.html");
    addElement ("Machine Tool Technology", ShopsRootDir + "machine/index.html");
    addElement ("Metal Fabrication", ShopsRootDir + "metalfab/index.html");
    addElement ("Plumbing", ShopsRootDir + "plumbing/index.html");
    document.writeln("</table>");
}
