function resize_gallery_blocks() {
	var per_line = 5;
    var index = 0;
    var group = $('.catalogue li:eq(' + index.toString() + '), .catalogue li:gt(' + (index).toString() + ')').not('.catalogue li:gt(' + (index + per_line - 1).toString() + ')');
    while (group.length > 0) {
    	var max_h = 0;
    	$(group).removeAttr('style');
    	$(group).each(function() {
    		if ($(this).height() > max_h) {
    			max_h = $(this).height();
    		}
    	});
    	$(group).height(max_h);
    	
    	index += per_line;
    	group = $('.catalogue li:eq(' + index.toString() + '), .catalogue li:gt(' + (index + 1).toString() + ')').not('.catalogue li:gt(' + (index + per_line - 1).toString() + ')');
    }
}

$(document).ready(function () {
	$('.boxes li').hover(function() {
    	$(this).css('cursor', 'pointer');
    }, function() {});
    $('.boxes li').live('click', function() {
    	$(this).find('a:first').click();
    });
    $('.boxes li a').live('click', function() {
    	window.location.href = $(this).attr('href');
    	return false;
    });
    
    resize_gallery_blocks();
});

$(window).load(function () {
	resize_gallery_blocks();
});
