$(function(){
  var page_path;
  page_path = window.location.pathname;
  $('#main_menu').find('li').each(function(){
    var menu_path, new_text;
    menu_path = $(this).find('a').attr('href');
    if (menu_path == page_path){
      new_text = $(this).find('a').text();
      $(this).text(new_text);
      $(this).addClass('current');
    }
  });
  $('#main_menu').find('ul li').mouseover(function(e){
    $(this).addClass('active');
  });
  $('#main_menu').find('ul li').mouseout(function(e){
    $(this).removeClass('active');
  });
});
