
 $(document).ready(function() {

     $("li.Level1").hover(
      function() {
      
      
      $(this).append($("<div class=\"hoverDiv\"></div>"));
      $(this).find("img").show();
        $(this).css("background", "#298436");

  
     },
      function() {
 
             $(this).find(".hoverDiv:last").remove(); 
             $(this).css("background", "");
             $(this).find("img").hide();
       

     }
  );



 });




