function makeHoverText() {

    initializeNav();
    
    var ctrlLinks = document.getElementById('controlPanel').getElementsByTagName('a');
    
    for (var i=0; i <ctrlLinks.length;i++) {
        makeHovers(ctrlLinks[i]);
    }
}

function makeHovers(what) {
    what.onmouseover = Function("document.getElementById('updater').innerHTML = this.title")

    what.onmouseout = Function("document.getElementById('updater').innerHTML = '&nbsp;'")
}

window.onload=makeHoverText;
