$(function() {

	//nieuwsblock = 484-90=394
	//content = 484-15-15-50-30=374
	//alert($('.nieuwsblock').outerHeight()+' : '+$('.content').outerHeight());
	if($('.nieuwsblock').outerHeight() > $('.content').outerHeight() && ($('.nieuwsblock').outerHeight() > 484 || $('.content').outerHeight() > 484)) {
		$('.content').height($('.nieuwsblock').height()-20);
	} else if($('.nieuwsblock').outerHeight() < $('.content').outerHeight() && ($('.nieuwsblock').outerHeight() > 484 || $('.content').outerHeight() > 484)) {
		$('.nieuwsblock').height($('.content').height()+20);
	} else {
		$('.nieuwsblock').height(394);
		$('.content').height(374);
	}
});


