<!--

// 

klassMatch = function(obj, klass) {
    var klassList = obj.className.split(' ');
    for (var i = 0; i < klassList.length; i++) {
        if (klassList[i] == klass) {
            return true;
        }
    }
    return false;
}

klassToggle = function(obj, oldKlass, newKlass) {
    var klassList = obj.className.split(' ');
    for (var i = 0; i < klassList.length; i++) {
        if (klassList[i] == oldKlass) {
            klassList[i] = newKlass;
            obj.className = klassList.join(' ');
            return true;
        }
    }
    return false;
}

setPoppers=function() {
    var parentList=document.getElementsByTagName('p');
    for (var i = 0; i < parentList.length; i++) {
        if (klassMatch(parentList[i], 'popper')) {

            parentList[i].onmouseover = function() {
                var childList=this.getElementsByTagName('span');
                for (var j = 0; j < childList.length; j++) {
                    if (klassToggle(childList[j], 'depop', 'pop')) {
                        this.style.zIndex=5;
                        break;
                    }
                }
            }
            parentList[i].onmouseout = function() {
                var childList=this.getElementsByTagName('span');
                for (var j = 0; j < childList.length; j++) {
                    if (klassToggle(childList[j], 'pop', 'depop')) {
                        this.style.zIndex=0;
                        break;
                    }
                }
            }
        }
    }
}

if (document.all && document.getElementById) {
    window.onload = function() {
    setPoppers();
    }
}

//-->
