window.onload = function() {
    var obj = document.getElementById('bottom_myor').getElementsByTagName('li');
    for( var i = 0; i < obj.length; i ++) {
        obj[i].onmouseover = function() {
            this.style.backgroundColor = '#ff7f01';
            this.style.fontWeight = 'bold';
        }
        obj[i].onmouseout = function() {
            this.style.backgroundColor = 'transparent';
            this.style.fontWeight = 'normal';
        }
    }
}
