// Highlight current page within selected menu tree.
function setActive() {
  aObj = document.getElementById('cta_menu_bar').getElementsByTagName('a');
  for(i=1;i<aObj.length;i++) {
if(location.href!="http://fbg.webshopmanager.com/") {
    if(document.location.href.indexOf(aObj[i].href)>=0) {
      aObj[i].className='current';
}
}
else{
aObj[0].className='current';
}
}
}
