 $(document).ready(function(){
   $("li").hover(
      function () {
        $(this).css("background-color","black");
      }, 
      function () {
        $(this).css("background-color","gray");
      }
    );
    /*
   $("li").click(
      function () {
        $("li").css("background-color","gray");
        $(this).css("background-color","red");
      });
*/
    
 });
