function mostrarOpcion(objeto) {
	objeto.children.item(1).style.display='block';
	oli=objeto.getElementsByTagName("li");
	for (i=0; i<oli.length ; i++) {
		oli.item(i).style.backgroundColor=objeto.style.backgroundColor;
    }
    objeto.style.cursor="hand";
	return;
}
function ocultarOpcion(objeto) {
	objeto.children.item(1).style.display='none';
    objeto.style.cursor="";
	return;
}