function menuOver(object) {
	object.style.backgroundColor ="#4A65A4";
	object.style.cursor = "";
	object.style.color="#FFFFFF";
	object.style.fontWeight="bold";
}

function menuOut(object) {
	object.style.backgroundColor = "#C8D8EB";
	object.style.cursor = "";
	object.style.color="#FFFFFF";
	object.style.fontWeight="bold";
}