$(document).ready(function (){
   $('#navigation li:has(ul)').hover(
      function () {
         $(this).find('ul').fadeIn(200);
      },
      function () {
         $(this).find('ul').hide();
      }
   )
   var currentLoc = '/' + window.location.href.split('/').slice(3).join('/');
   // if (currentLoc == '/') { currentLoc = '/index.html' };
   $('#navigation a[href=' + currentLoc + ']').addClass('current');
});
