$(document).ready(function() {
  $("#menu * a").each(function() {
    if(this.href == window.location || this.href == document.location.protocol + "//" + window.location.hostname + window.location.pathname)
     $(this).addClass("selected");
     //$(this).parent().addClass("selected")
  });		
});

