$(document).ready(function(){
	$('.answer').each(function(){
		if ($(this).outerHeight() < $(this).prev('div.question').outerHeight())
			$(this).height($(this).prev('div.question').height());
	});
})
