//floating menu fix

window.onload=function(){

fix('submenu-mid','main_content');
}

function fix(one,two) {	
var lh=document.getElementById(one).offsetHeight;
if (document.getElementById(one)) {
var rh=document.getElementById(two).offsetHeight;
var nh = Math.max(lh, rh);
document.getElementById(one).style.height=nh+"px";
document.getElementById(two).style.height=(nh-15)+"px";
}
}

