$(document).ready(function() {

	Shadowbox.init({
	   player:"html"
	   });
	
	$('.Banner').cycle({
		fx: 'fade',
		speed: 2000,
		timeout: 2000,
		cleartype: true,
		cleartypeNoBg: true
	});
	
    Shadowbox.setup("a.Fotos", {
        gallery:            "Galeria",
        autoplayMovies:     true
    });
	
/* 
$(".ROLL").hover(
	function(){this.src = this.src.replace("-off","-on");},
	function(){this.src = this.src.replace("-on","-off");}
	);
*/ 
	$("#FormContacto").validate({
			rules: {
				Nombre: { required: true },
				Apellido1: { required: true },
				Email: { required: true, email: true },
				//TelFijo: { number: true, minlength: 9, maxlength: 9, TelContacto: true },
				TelMovil: { number: true, minlength: 9, maxlength: 9, TelContacto: true },
				//AvisoLegal: { required: true },
				Politica: { required: true }
			}
	});
	
});


