// JavaScript Document


height_source="side_nav"
height_target="main_body"
function setMinHeight(){ 
if (document.layers){
//Netscape 4 
pre = 'document.';
post = '';
post2 = '';
post3="px"
}
if (document.getElementById){
//Netscape 6 
pre = 'document.getElementById("';
post = '")';
post2 = '").style';
post3="px"
}
if (document.all){
//IE4+ 
pre = 'document.all.';
post = '';
post2 = '.style';
post3=""
}

oh=eval(pre+height_source+post);
    if (oh) {
    h=oh.offsetHeight;
    
    f = eval(pre+height_target+post2)
    f.height=h+post3
    }
}

function initDynamic() {
    for (i=1; i<=20; i++) initializeMenu("map_list_"+i, "prod_list_"+i);
	if ( document.getElementById("side_nav") && document.getElementById("main_body")) {
		if ( document.getElementById("side_nav").offsetHeight > document.getElementById("main_body").offsetHeight)
			setMinHeight();
	}
	if(window.attachEvent)
        window.attachEvent("onload",setListeners);
}

addLoadEvent(initDynamic);
window.onResize=setMinHeight;
