function hoverButton(tableCell) {
	tableCell.className = "hover";
}
function hoverOut(tableCell) {
	tableCell.className = "inactive";
}
function hoverSubnav(tableCell) {
	tableCell.className = "subnavHover";
}
function hoverSubnavOut(tableCell) {
	tableCell.className = "subnav";
}
function hoverSubnavActiveOut(tableCell) {
	tableCell.className = "subnavActive";
}
function hoverActive(tableCell) {
	tableCell.className = "hover_active"
}
function hoverActiveOut(tableCell) {
	tableCell.className = "active"
}
function hoverSecondaryNav(tableCell) {
	tableCell.className = "secondaryNavHover"
}
function hoverSecondaryNavOut(tableCell) {
	tableCell.className = "secondaryNav"
}
function hoverSecondaryNavActiveOut(tableCell) {
	tableCell.className = "secondaryNavActive"
}
