jQuery(document).ready(function() {
	
	//cuando pincho en últimas
	jQuery(".ultimas").click(function() {
		//tengo que poner a hide todas las capas excepto donde muestro el iframe
		jQuery("div#caparazon").hide();
		
		var anchoDisponible=screen.availWidth+"px";
		var altoDisponible=screen.availHeight+"px";
		
		var anchoDisponibleIframe=screen.availWidth-30 +"px";
		var altoDisponibleIframe=screen.availHeight-30 +"px";
		
		//Ahora pinto la capa que va encima que carga el iframe
		var enlace=jQuery(this).attr("href");

		jQuery(this).removeAttr("href");
		jQuery("#contenedorIframe").html("<div class='close'><a href='#' onclick='cerrar()'><img src='css/img/closebox.png' alt='Cerrar'></a></div><iframe src='"+enlace+"' width='"+anchoDisponibleIframe+"' height='"+altoDisponibleIframe+"'></iframe>");
		jQuery("#contenedorIframe").show("slow");
	});
	
	//cuando pincho en azar
	jQuery(".azar").click(function() {
		//tengo que poner a hide todas las capas excepto donde muestro el iframe
		jQuery("div#caparazon").hide();
		
		var anchoDisponible=screen.availWidth+"px";
		var altoDisponible=screen.availHeight+"px";
		
		var anchoDisponibleIframe=screen.availWidth-30 +"px";
		var altoDisponibleIframe=screen.availHeight-30 +"px";
		
		//Ahora pinto la capa que va encima que carga el iframe
		var enlace=jQuery(this).attr("href");

		jQuery(this).removeAttr("href");
		jQuery("#contenedorIframe").html("<div class='close'><a href='#' onclick='cerrar()'><img src='css/img/closebox.png' alt='Cerrar'></a></div><iframe src='"+enlace+"' width='"+anchoDisponibleIframe+"' height='"+altoDisponibleIframe+"'></iframe>");
		jQuery("#contenedorIframe").show("slow");
	});
	
	//los target blank
	jQuery(function() {
	    jQuery('a[rel*=external]').click( function() {
	        window.open(this.href);
	        return false;
	    });
	});
	
	
});
//cuando cierro el iframe
	function cerrar() {
	 jQuery("#contenedorIframe").hide("slow"); 
	 jQuery("#contenedorIframe").html("");
	 jQuery("div#caparazon").show();
	 
	 jQuery(".ultimas").attr("href","http://www.photogonza.com/coppermine/auto/index.php");
	 jQuery(".azar").attr("href","http://www.photogonza.com/coppermine/auto/20_ultimas.php");
	}
