//igual de alto dinamicamente
function equalHeight(group) {
    tallest = 0;
    group.each(function() {
        thisHeight = $(this).height();
        if(thisHeight > tallest) {
            tallest = thisHeight;
        }
    });
    group.height(tallest);
}


$(document).ready(function(){
						   
	//Columnas igual de alto	
	equalHeight($("ul.listado li"));
	
	//Gleria de imagenes	
	$(".thumbs a").click(function(){	
		var largePath = $(this).attr("href");
		var largeAlt = $(this).attr("title");		
		$("#largeImg").attr({ src: largePath, alt: largeAlt });		
		$("span.desc").html(largeAlt); return false;
	});	

	
});//cierro