function rek_uit(){

var links = document.getElementById('nieuws')
var rechts = document.getElementById('nieuws_rechts')



var linksHoog = links.offsetHeight;
var rechtsHoog = rechts.offsetHeight;


linksHoog > rechtsHoog ? rechts.style.height=linksHoog+"px" : links.style.height=rechtsHoog+"px"
}

