  $(document).ready(function(){
    $("#navItemsLeft li").mouseover(function(){
        $(this).addClass("highlighted")
    });
  });
  $(document).ready(function(){
    $("#navItemsLeft li").mouseout(function(){
        $(this).removeClass("highlighted")
    });
  });
