	$(document).ready(function()
	{
		var it=$("#itemslist .item");
		var maxh=0;
		jQuery.each(it, function()
		{
			var h=$(this).height();
			if (h>maxh) maxh=h;
		});

		jQuery.each(it, function()
		{
			$(this).height(maxh);
		});
		

	}
	);


