﻿function highlightTopMenu() {
    var as = document.getElementById('top-navigation').getElementsByTagName('a');
    var url = window.location.href;    
    for (i = 0; i < as.length; i++) {
        if (as[i].href == url) {
            as[i].style.fontWeight = 'bold';
            as[i].style.color = '#fff500';
            as[i].style.textDecoration = 'underline';
            //as[i].style.color = '#FBC803';
        }
    }
}
function highlightMenu() {
    var as = document.getElementById('squarrows-left-nav').getElementsByTagName('a');
    var url = window.location.href;    
    for (i = 0; i < as.length; i++) {
        if (as[i].href == url) {
            as[i].style.fontWeight = 'bold';
            as[i].style.color = '#999999';
            as[i].style.textDecoration = 'underline';
            //as[i].style.color = '#FBC803';
        }
    }
}
