$(document).ready(function () {

	$("#breves a.img").click(function () {
		var href = $(this).attr("href");
		var img  = new Image();
		img.onload = function () {
			window.open("image.php?file="+href, "", "width="+img.width+",height="+img.height);
		}
		img.src = href;
		return false;
	});

	var max = 0;
	$("#summary .blk").each(function (a, b) {
		max = Math.max(max, $(b).height());
	});
	$("#summary .blk").height(max);
	$("#summary .sep").height(max);

});
