function inMenu(obj) {
	obj.style.backgroundColor = "#6666BB";
	cursor = "hand";
}

function outMenu(obj) {
	obj.style.backgroundColor = "";
	cursor = "default";
}