function menuMouseOver(obj) {
	obj.style.backgroundColor='#36678F';
	obj.style.color='white';
	obj.style.cursor='pointer';
	}
function menuMouseOut(obj) {
	obj.style.backgroundColor='white';
	obj.style.color='#666666';
	}
function menuMouseOut2(obj) {
	obj.style.backgroundColor='#597340';
	obj.style.color='white';
	}
function menuMouseClick(obj, menu) {
	obj.style.backgroundColor='#597340';
	obj.style.color='black';
	location.href = menu;
	}

