$(document).ready(function() {
  $("#global_navi li").each(function() {
    var href = $(this).children().attr("href");
    if (href == "index.html" || href == "../index.html") {
      $(this).addClass("current");
    } else {
      $(this).removeClass("current");
    };
  });
});

