 $(document).ready(function() {
 
     $("#mainmenu1_ul li").hover(
  function () {
    $(this).addClass("hover");
  },
  function () {
    $(this).removeClass("hover");
  }
);
  $("#mainmenu1_ul ul li:first-child").css("border","none");


      });
