activateMenu = function(menu_vedlejsi) {

	if (document.all && document.getElementById(menu_vedlejsi).currentStyle) {
        var navroot = document.getElementById(menu_vedlejsi);

        var lis=navroot.getElementsByTagName("LI");
        for (i=0; i<lis.length; i++) {
            if(lis[i].lastChild.tagName=="UL"){
             	lis[i].onmouseover=function() {
                   this.lastChild.style.left="auto";
                }
                lis[i].onmouseout=function() {
                   this.lastChild.style.left="-987em";
                }
            }
        }
    }
}


