$(document).ready(function() {
	$('.address').each(function(i) {
		if(i%2 == 1) {
			h1 = $(this).height();
			h = $(this).prev().height();
			mm = Math.max(h1,h);
			$(this).css("height",mm);
			$(this).prev().css("height",mm);
		};
	});
	$('#ctext > h1').css("height","auto");
	$('#ctext > .clear').css("height","1px");
});
