function adjustHeights()
{
	$('.col-crossroad ul').each(function(){  		
		var height = 0;			
		$('h3', this).each(function(){
			$(this).css('height', 'auto');
			height = this.offsetHeight > height ? this.offsetHeight : height;			
		}).each(function(){
			if(height > 0) $(this).css('height', height + 'px');
		});	
		
		var height = 0;			
		$('h4', this).each(function(){
			$(this).css('height', 'auto');
			height = this.offsetHeight > height ? this.offsetHeight : height;			
		}).each(function(){
			if(height > 0) $(this).css('height', height + 'px');
		});	
		
		var height = 0;
		$('.info', this).each(function(){
			$(this).css('height', 'auto');
			height = this.offsetHeight > height ? this.offsetHeight : height;			
		}).each(function(){
			if(height > 0) $(this).css('height', height + 'px');
		});	
		
		var height = 0;
		$('.desc', this).each(function(){
			$(this).css('height', 'auto');
			height = this.offsetHeight > height ? this.offsetHeight : height;			
		}).each(function(){
			if(height > 0) $(this).css('height', height + 'px');
		});	
		/*
		height = 0;
		$('.img', this).each(function(){
			$(this).css('height', 'auto');
			height = this.offsetHeight > height ? this.offsetHeight : height;			
		}).each(function(){
			if(height > 0) $(this).css('height', (height - 3) + 'px');
		});	

		height = 0;
		$('div.adjust', this).each(function(){
			$(this).css('height', 'auto');
			height = this.offsetHeight > height ? this.offsetHeight : height;			
		}).each(function(){
			if(height > 0) $(this).css('height', (height - 3) + 'px');
		});	
		*/
	});

	/*
	$('#preparation-auction ul').each(function(){
		var height = 0;			
		$('h3', this).each(function(){
			$(this).css('height', 'auto');
			height = this.offsetHeight > height ? this.offsetHeight : height;			
		}).each(function(){
			if(height > 0) $(this).css('height', height + 'px');
		});	
		
		height = 0;
		$('div.in', this).each(function(){
			$(this).css('height', 'auto');
			height = this.offsetHeight > height ? this.offsetHeight : height;			
		}).each(function(){
			if(height > 0) $(this).css('height', height + 'px');
		});	
	});
	*/
  	
};