// JavaScript Document
// tested with jquery 1.4.1
$(document).ready(function(){
								//head : 99px
								//topnavigatie: 28px
								//footer: 50px
														   
								//doc sideborders schermvullend
								 var portHeight = $(window).height();
								 var docHeight = $('#outerwrapper').height() +50;
								 var contentHeight = portHeight - 332;
								 //alert('portHeight= '+portHeight+' & docHeight= '+docHeight);
								 if (docHeight < portHeight){
									 //alert("doc niet schermvullend")
									 //$('#outerwrapper').css('min-height',portHeight);
									 $('#maincontent').css('min-height',contentHeight);
									 
											if ($.browser.msie && $.browser.version == 6.0) { 
												$('#maincontent').css('height',contentHeight);
												}
									 }
									 
						   })
