/* Tested and working; call it by placing onload="setCurrentPage();" in the <body> element */

function setCurrentPage() {

var currentPage = window.location.href;
var navigationContainer = document.getElementById('bannerlinks');
var navBarLinkCollection = navigationContainer.getElementsByTagName('a');
var j;

for (j=0;j < navBarLinkCollection.length;j++) {

if (currentPage == navBarLinkCollection[j].href) {
navBarLinkCollection[j].style.color = '#b7e340';

}

}

}
