$(document).ready(function () 
{ 
	// Height of the contenttext div which is expanding the page.
	var Content_Height = $('#content').height();
	
	// Height of the menu div.
	var vMenu_Height = $('#vertical-menu').height();
	
	// Menu aanpassen aan de contenthoogte als deze hoger is.
	if(vMenu_Height < Content_Height) 
	{	
		// Hoogte voor fill_menu instellen.
		$('#vertical-menu').css('height', Content_Height);
	}
	
	// Contenthoogte aanpassen aan het menu als deze hoger is.
	if(vMenu_Height > Content_Height) 
	{	
	
		var marge = 0;
		var new_height = vMenu_Height - marge;
		
		$('#content').css('height', new_height);
	}

});
