function mOvr(src) {
	if (!src.contains(event.fromElement)) {
		src.style.cursor = 'hand';
		src.background = "imagens/menu_botao_on.jpg";
	}
}
function mOut(src) {
	if (!src.contains(event.toElement)) {
		src.style.cursor = 'default';
		src.background = "imagens/menu_botao.jpg";
	}
}

function mOvrColor(src,color) {
	if (!src.contains(event.fromElement)) {
		src.style.cursor = 'hand';
		src.bgColor = color;
	}
}
function mOutColor(src,color) {
	if (!src.contains(event.toElement)) {
		src.style.cursor = 'default';
		src.bgColor = color;
	}
}