window.onload = function () {


    var aList = document.getElementById('navlist').getElementsByTagName('a');
    for (var i=0; i < aList.length; i++) {
        aList[i].onmouseover = function () {
            document.getElementById('headerLogo').onmouseover();
        };
        aList[i].onmouseout = function () {
            document.getElementById('headerLogo').onmouseout();
        };
    }


}
