// you are here
  $(document).ready(function()
  {
    var ass = $("a").each(function(el){
      if( $(this).attr("href") == window.location.pathname){
        $(this).addClass("yah");
      }
    });
  });

