$(document).ready(function(){

//Para centrar las miniaturas de las imágenes verticalmente. Como en ie6 casca, a tomar por culo el que lo use
if (!($.browser.msie && $.browser.version <= 6)) {
	$(".album_detalle ul li").each(function() {
		imagen = $(this).find("img");
		alto = $(this).height();
		altoimg = imagen.height();
		
		margentop = (alto - altoimg) / 2.5;
		imagen.css("margin-top", margentop);
	});
}

$('a.borrar').click(function() {
	enlace=$(this).attr("href");

	if(confirm("¿Confirmas que quieres borrar el álbum? Se borrarán todas las fotos y sus comentarios.")) {
		window.location=enlace;
		return false;
	}
	
	return(false);
});


});

