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