$(document).ready(function() {
    $('.fx_fade').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...

	});
	
		$('.fx_bounce').cycle({ 
		fx:     'scrollDown', 
		easing: 'bounceout', 
		delay:  -2000
	});

});


function MostrarMenu (capa) {

if (document.getElementById(capa).style.display == "block")
	{
	document.getElementById(capa).style.display = "none";
	}
	else
	{
	OcultaMenus()
	document.getElementById(capa).style.display = "block";
	}
}

function OcultaMenus () {
	document.getElementById('EMPRESA').style.display = "none";
	document.getElementById('ACTIVIDADES').style.display = "none";
	
}

function OcultaFotos () {
	for (a=1; a<=NumFotos; a++)
	{eval("document.getElementById('Foto0"+a+"').style.display = 'none';")}
}

function MuestraFoto (NombreFoto) {
	OcultaFotos()
	document.getElementById(NombreFoto).style.display = "block";
}

function RevisarFormContacto(){
var Nombre = document.formu.Nombre.value;
var Apellidos = document.formu.Apellidos.value;
var Empresa = document.formu.Empresa.value;
var Email = document.formu.Email.value;
var Telf = document.formu.Telf.value;
 if(Nombre == "" || Apellidos == "" || Empresa == "" || Email == "" || Telf == ""){
    alert("Rellene los campos marcador con (*)");
 } else {
 	document.formu.submit();
 }  
}
