﻿// JScript File
$(document).ready(function() {
	// Por defecto escondo
	$("#OLD1").hide();
	$("#OLD2").hide();
	$("#OLD3").hide();
	$("#OLD4").hide();
	
	// Clic en 1
	$("#a1").click(function() {
		$("#OLD1").show('slow');
		$("#OLD2").hide('fast');
		$("#OLD3").hide('fast');
		$("#OLD4").hide('fast');
	});
	
	// Clic en 2
	$("#a2").click(function() {
		$("#OLD1").hide('fast');
		$("#OLD2").show('slow');
		$("#OLD3").hide('fast');
		$("#OLD4").hide('fast');
	});
	
	// Clic en 3
	$("#a3").click(function() {
		$("#OLD1").hide('fast');
		$("#OLD2").hide('fast');
		$("#OLD3").show('slow');
		$("#OLD4").hide('fast');
	});
	
	// Clic en 4
	$("#a4").click(function() {
		$("#OLD1").hide('fast');
		$("#OLD2").hide('fast');
		$("#OLD3").hide('fast');
		$("#OLD4").show('slow');
	});
	
	// Clic en Volver
	$(".volver a").click(function() {
		$("#OLD1").hide('slow');
		$("#OLD2").hide('slow');
		$("#OLD3").hide('slow');
		$("#OLD4").hide('slow');
	});
});

