function update_navigation_tabs () {
  $('#header a').each(function(i) {
    if (this.href == location.href) {
      $(this).addClass("active")
    } else {
      $(this).addClass("inactive")
    };
  });
}


$(document).ready(function(){
  update_navigation_tabs();
});

