/**
 *	@purpose:   handles the folding of the menu
 *	@author:    robert.leurs@cooloxygen.com
 *	@version:   1.0
 */    

$(function(){
    
    var correction      = -195;
    
    var documentHeight = $(document).height();
    var windowHeight = $(window).height();
    
    var headerHeight = $("#header_container").height();
    var navHeight = $("#header_container").height();
    var infoboxHeight = $("#infobox_container").height();
    
    var contentHeight = windowHeight - headerHeight - navHeight - infoboxHeight - correction;
    
    $("#scroller").height(contentHeight);
});