//window.onload=contain;


function contain(){
	//make sure the container contains the menu which is absolutely positioned
	
	menu =document.getElementById('menu');
	
	container=document.getElementById('innerLine');
	mandatories=document.getElementById('footer');
	
	if((menu.offsetHeight+260)>container.offsetHeight){
		//container.style.height = (menu.offsetHeight+280)+'px';
		//mandatories.style.paddingTop ='80px';
		}
	
	

}