	function cambia(ind){
		for(cont=1;cont<=5;cont++){
			document.getElementById("informa"+cont).style.display="none";
			document.getElementById("meninfo"+cont).style.backgroundColor="#999999";	
		}
		document.getElementById("informa"+ind).style.display="block";
        document.getElementById("meninfo"+ind).style.backgroundColor="#333333";
    }
