window.onload=function(){
	divloader();
	var subnav=document.getElementById('subnav');
	var content=document.getElementById('content');
	if(subnav && content){
  	if(subnav.offsetHeight>content.offsetHeight){
  		content.style.height =subnav.offsetHeight+"px";
  	}
  	else{
  		if(subnav.offsetHeight<content.offsetHeight){
  			subnav.style.height=content.offsetHeight+"px";
  		}
  	}
  }
}