// JavaScript Document
// tested with jquery 1.4.1
$(document).ready(function(){
								
														   
								//doc sideborders schermvullend
								 var portHeight = $(window).height();
								 var docHeight = $('#outerwrapper').height();
								 var contentHeight = portHeight - 320;/*408 */
								 //alert('portHeight= '+portHeight+' & docHeight= '+docHeight);
								 if (docHeight < portHeight){
									 //alert("doc niet schermvullend")
									 //$('#outerwrapper').css('min-height',portHeight);
									 $('#contentsection').css('min-height',contentHeight);
									 
											if ($.browser.msie && $.browser.version == 6.0) { 
												$('#maincontent').css('height',contentHeight);
												}
									 }
									 
						   })
