function hoogte(div,name){
	/********* maak een array van de divs die in hoogte aangepast moet worden ************/
	x = name.split(',');
	var height = (document.getElementById(div).clientHeight) + "px";
		for (var i=0;i<x.length;i++)
		{
		document.getElementById(x[i]).style.height = height;
		}
	}
$(document).ready(function() { 

    $('.popup').fancybox();
    
});
