toptoolbar = "<table margin=0 cellspacing=0 style='padding: 0px; font: 7pt verdana; color: white; text-align: center' width=100%><tr>";

function drawtoptoolbar()
{
	function newschool(text, link)
	{
		this.text = text;
		this.link = link;
	}
	
	toolbarvals = new Array(new newschool('Hoosac Valley High School', 'http://hvhs.acrsd.net'), new newschool('Adams Memorial Middle School', 'http://amms.acrsd.net'), new newschool('Cheshire Elementary School', 'http://ces.acrsd.net'), new newschool('C.T. Plunkett Elementary School', 'http://ctp.acrsd.net'));
	
	for(x=0; x<toolbarvals.length; x++)
	{
		toptoolbar+= "<td style='padding: 0px'><a class=toptoolbar href='" + toolbarvals[x].link + "'>" + toolbarvals[x].text + "</a></td>";
	}
}

drawtoptoolbar();

toptoolbar+= "</tr></table>";

function prepbanner(imgsrc, color)
{
	document.write("<table width=100%><tr><td style='text-align: center; vertical-align: top; border-left: 2px solid #0066ff; border-bottom: 4px solid #003399; width:148px; background-color:" + color + "' height=100%><a href=index.html><img src=" + imgsrc + "></a><br><a class=toptoolbar href='index.html'>Home</a></div></td><td width=* style='text-align: center; vertical-align: top; border-right: 2px solid #0066ff; border-bottom: 4px solid #003399; background-color:" + color + "' align=center><img src='banner.gif'>" + toptoolbar + "</tr></td></tr>");
}

prepbanner("acrsdbig.gif", "#0099ff");