// JavaScript Document


height_source="side_nav"
height_target="minheight"
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<=200; i++) initializeMenu("map_list_"+i, "prod_list_"+i);
	setMinHeight();
	if(window.attachEvent)
        window.attachEvent("onload",setListeners);
}

addLoadEvent(initDynamic);
window.onResize=setMinHeight;
