// Empieza
$(document).ready(function() {

	
	// Camara 1
	$('.flashbox a#amap1').click(function() {
		// Esconder todo
		if ($('#map1').is(":hidden")) {
		$('.flashbox .mapa').hide('fast');
		$('.flashbox .luz').fadeOut('fast');
		$('.map_link_item').removeClass("active");
		
		
		// Mostrar
		$('#map1').show('slow');
		$(this).addClass("active");
		$('.flashbox span#luz1').fadeIn('slow');
		return false;
		}
	 });
	
	
	// Camara 2
	$('.flashbox a#amap2').click(function() {
		// Esconder todo
		if ($('#map2').is(":hidden")) {
		$('.flashbox .mapa').hide('fast');
		$('.flashbox .luz').fadeOut('fast');
		$('.map_link_item').removeClass("active");
		
		
		// Mostrar
		$('#map2').show('slow');
		$(this).addClass("active");
		$('.flashbox span#luz2').fadeIn('slow');
			
		return false;
		}
	 });
	
	
	// Camara 3
	$('.flashbox a#amap3').click(function() {
		// Esconder todo
		if ($('#map3').is(":hidden")) {
		$('.flashbox .mapa').hide('fast');
		$('.flashbox .luz').fadeOut('fast');
		$('.map_link_item').removeClass("active");
		
		// Mostrar
		$('#map3').show('slow');
		$(this).addClass("active");
		$('.flashbox span#luz3').fadeIn('slow');
		return false;
		}
	 });
	
	

// Ultimo	 
});  

