function mostrarOpcion(objeto) {
	try {
		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="pointer";
	}
	catch (e) {
	}
	return;
}
function ocultarOpcion(objeto) {
	try {
		objeto.children.item(1).style.display='none';    
		objeto.style.cursor="";
	} catch (e) {
	}
      return;
}

setTimeout("ocultarOpcion()",1000);


