function menuOver(object) {
	object.style.backgroundColor ="#BCBCBC";
	object.style.cursor = "hand";
	object.style.color="#0410AD";
	object.style.fontWeight="bold";
}

function menuOut(object) {
	object.style.backgroundColor = "#FFFFFF";
	object.style.cursor = "";
	object.style.color="#000000";
	object.style.fontWeight="";
}