$(document).ready(function(){
	$("#mapa-santanyi").toggle(function(){
	   $("#santanyi").show("slow");
	},function(){
	   $("#santanyi").hide("slow");
	});
	
	$("#mapa-margall").toggle(function(){
	   $("#margall").show("slow");
	},function(){
	   $("#margall").hide("slow");
	});
	
	$("#mapa-orense").toggle(function(){
	   $("#orense").show("slow");
	},function(){
	   $("#orense").hide("slow");
	});
			
	//validación formulario consultas
	$("#contacto").validate({	
		rules: {
			nombre: {
				required: true,
				minlength: 5
			},
			email: {
				required: true,
				email: true
			},
			mensaje: {
				required: true,
			}
		}
	});
	
	
});
