$(document).ready(function(){
  $("div.menu li:not(.current_page_item)").mouseover(function(event){
    $(this).addClass("hover_page_item");
  });
  $("div.menu li:not(.current_page_item)").mouseout(function(event){
    $(this).removeClass("hover_page_item");
  });
  $("div.entry-body a:not([rel=tag],[href*=comments],[href*=respond])").click(function(event){
    window.open(this.href, "target");
    event.preventDefault();
  });
});

