//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// Function to hi-light current menu item 
//                                        
lis = document.getElementsByTagName('li');
for (i = 0; i < lis.length; i++) {
  a = lis[i].firstChild.href;
  a = a.substr(a.lastIndexOf('/'));
  if (location.pathname == '/') {
    lis[0].firstChild.style.color = 'white';
    break;
  }
  if (a == location.pathname) {
    lis[i].firstChild.style.color = 'white';
    break;
  }
}

