/* Functions needed for the Menu Mouse over effect */

function TopMenu(object) {
	object.style.backgroundColor = ''
}
function TopMenuHover(object) {
	object.style.backgroundColor = '#336666'
}

function LeftMenu(object) {
	object.style.backgroundColor = ''
}
function LeftMenuHover(object) {
	object.style.backgroundColor = '#336666';
}

function SubMenu(object) {
	object.style.backgroundColor = ''
}
function SubMenuHover(object) {
	object.style.backgroundColor = '#336666'
}
