$(document).ready(function() {
	$('dl.container').each(function() {
		$(this).css('height', $(this).height());
		
		$(this).find('dt, dd').each(function() {
			$(this).css('height', $(this).height());	
		});
	});
});