﻿// JScript File
$(document).ready(function() {
	// Por defecto escondo las zonas
	$("#Norte").hide();
	$("#Centro").hide();
	$("#Occidente").hide();
	$("#Sur").hide();
	$("#mapaInteractivo").hide();
	
	// Clic en Norte
	$("#aNorte").click(function() {
		$("#Norte").show('slow');
		$("#Centro").hide('fast');
		$("#Occidente").hide('fast');
		$("#Sur").hide('fast');
		$("#mapaInteractivo").hide();
	});
	
	// Clic en Centro
	$("#aCentro").click(function() {
		$("#Centro").show('slow');
		$("#Occidente").hide('fast');
		$("#Sur").hide('fast');
		$("#Norte").hide('fast');
		$("#mapaInteractivo").hide();
	});
	
	// Clic en Occidente
	$("#aOccidente").click(function() {
		$("#Occidente").show('slow');
		$("#Sur").hide('fast');
		$("#Norte").hide('fast');
		$("#Centro").hide('fast');
		$("#mapaInteractivo").hide();
	});
	
	// Clic en Sur
	$("#aSur").click(function() {
		$("#Sur").show('slow');
		$("#Norte").hide('fast');
		$("#Centro").hide('fast');
		$("#Occidente").hide('fast');
		$("#mapaInteractivo").hide();
	});
	
	// Clic en Volver
	$(".volver a").click(function() {
		$("#Norte").hide('slow');
		$("#Centro").hide('slow');
		$("#Occidente").hide('slow');
		$("#Sur").hide('slow');
		$("#mapaInteractivo").hide();
	});
	
	// Clic en Mapa
	$("#aMapa").click(function() {
		$("#Norte").hide();
		$("#Centro").hide();
		$("#Occidente").hide();
		$("#Sur").hide();
		$("#mapaInteractivo").show();
	});
});

