
var AcademicsRootDir = "/~bptecho/bpt/academics/";         // 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 ("English/Language Arts", AcademicsRootDir + "english/index.html");
    addElement ("Health/Physical Education", AcademicsRootDir + "physed/index.html");
    addElement ("Mathematics", AcademicsRootDir + "mathematics/index.html");
    addElement ("Science", AcademicsRootDir + "science/index.html");
    addElement ("Social Studies", AcademicsRootDir + "socialstudies/index.html");
    addElement ("Spanish", AcademicsRootDir + "spanish/index.html");
    document.writeln("</table>");
}
