function setWindowHeight() {			
	windowHeight = jQuery(window).height();				
	jQuery('#site_wrapper .body, #site_wrapper .innerbody').height(windowHeight-136);
	jQuery('#content .center, #content .c2').height(windowHeight-225);
	
	jQuery('#content .scrollPanebar, .jScrollPaneContainer').height(windowHeight-286);
	
	jQuery('#content .scrollPanebar').jScrollPane({
    	scrollbarWidth: 12,
    	showArrows: false,
    	reinitialiseOnImageLoad: true
    });
}

jQuery(function() {
	setWindowHeight();
	jQuery(window).resize(function() {
		setWindowHeight();
	});										
});
