function schooltable(text, link, pic)
{
	this.text = text;
	this.link = link;
	this.pic = pic;
}

schooltables = new Array(new schooltable('Hoosac Valley High School', 'http://hvhs.acrsd.net', 'hoosac.jpg'), new schooltable('Hoosac Valley Middle School', 'http://amms.acrsd.net', 'memorial.jpg'), new schooltable('Cheshire Elementary School', 'http://ces.acrsd.net', 'cheshire.jpg'), new schooltable('C.T. Plunkett Elementary School', 'http://ctp.acrsd.net', 'plunkett.jpg'), new schooltable('Adams-Cheshire Regional School District', 'http://www.acrsd.net', 'schools.jpg'));

function drawtable(a)
{
	document.write("<table class='imagebar'><tr>");
	for(x=0; x<schooltables.length; x++)
	{
		if(schooltables[x].pic != a)
		{
			document.write("<td style='spacing: 0px; padding: 0px'><a class='imagebar' href='" + schooltables[x].link + "'><img src='" + schooltables[x].pic + "'><br>" + schooltables[x].text + "</a></td>");
		}
	}
	document.write("</table>");
}