$(window).load(
    function() {
	 	$('#indexcontainer').height( $('#indexcontainer').height() - 55 );
	 	var maxHeight = 0;
	 	$('.item').each(function(index){
			if ($(this).height() > maxHeight) {
				maxHeight = $(this).height();
			}
		});
	 	$('.item').height( maxHeight );
	 //	alert('resize: ' + maxHeight);
    }
);


