
function setHeightBloco() {
	var premios = $("#premios div.bloco-premio[rel!='ignore']")
	var max = 0;
	$.each( premios, function() {
		max = Math.max($(this).height(), max);
	})
	
	$("#premios div.bloco-premio[rel!='ignore']").css("height", max+"px");
}



function dependsJQuery() {
    if(typeof jQuery != "undefined") {
        setHeightBloco();
    }
    else
        setTimeout("dependsJQuery()", 500);
}
dependsJQuery();
