$("li.menuparent").hover(
  function () {
    $(this).addClass("menuparenth");
  }, 
  function () {
    $(this).removeClass("menuparenth");
  }
);

