$(document).ready(
  function() {
    var pages = $("#nav ul li.page_item");
    jQuery.each(pages, function() {
      this.onmouseover = function() { $(this).addClass("over") };
      this.onmouseout = function() { $(this).removeClass("over") };
    })
  }
);




