﻿
function cmover(element)
{
document.getElementById(element).style.backgroundColor="#464B7B";

}
//#ADBCE5
function cmout(element)
{
document.getElementById(element).style.backgroundColor="#242740";

}
function linkme(location)
{
window.location=location;
}
function expand(id)
{
	if(id == "link6")
	{
	document.getElementById('link6').innerHTML="<div style=\"margin: 2px 4px 2px 4px;\">about us - <a href=\"contact\">contact us</a> | <a href=\"history\">history</a> | <a href=\"officials\">elected officials</a></div>";
	}
	else
	{
	document.getElementById('expander2').style.display="block";
	}
}
function contract(id)
{
	if(id == "link6")
	{
	document.getElementById('link6').innerHTML="<div style=\"margin: 2px 4px 2px 4px;\">about us</div>";
	}
	else
	{
	document.getElementById('expander2').style.display="none";
	}

}

