/******* MOSTRAR + OCULTAR MENU*******/

function ver(num){
var n=1;
while (div = document.getElementById('contenido'+n)){
	div.style.display='none';
	n++;
}
	div = document.getElementById('contenido'+num);
	div.style.display='block';
}


/******* MOSTRAR + OCULTAR CONTACTO *******/

function VerContacto(num){
var n=1;
while (div = document.getElementById('FormContacto'+n)){
	div.style.display='none';
	n++;
}
	div = document.getElementById('FormContacto'+num);
	div.style.display='block';
}