jQuery().ready(function() {		
	var h = $('#leftContent').outerHeight();
	var h2 = $('#rightContent').outerHeight();
	if (h > h2) $('#rightContent').height(h);
});
