/****** SELECT MENU ******/
function seleccion(numero){
var x=1;
while (div = document.getElementById('ITEM'+x)){
 div.className='';
 x++;
}
 div = document.getElementById('ITEM'+numero);
 div.className='selected';
}


/******* 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';
}