/* Pass classname as string to get all divs to the same size as biggest*/
function maxDiv(classname)
{
//$("#body").ready(function() {
$(window).load(function(){
	var maxHeight = 0;
	/* safari special */
/*  	if ($.browser.safari)
	$(".nieuws").each(function(){
		$(this).height($(this).height()+48);
		});  */
	//alert($("span.nieuws-snelkoppeling").innerHeight());	
	$("div."+classname).each(function() {

	var comp = $(this).height();	
 	if ( comp > maxHeight )
	{
		maxHeight = comp;
		
	}	 
   });
   //$("div."+classname).height(maxHeight);
	$("div."+classname).each(function() {
	$(this).css({"height":maxHeight});
	});
	});
	//});
 //})(jQuery);
}
