// fix .links blocks height
function fixsize(e){
	var height = 0;
	$(e).each(function(){
		if ($(this).height() > height){
			height = $(this).height();
		}
	});
	$(e).height(height);
};
$(window).load(function(){
    fixsize('.block.links');
	fixsize('.block.links h2');
});
