$(function() {      $("div#Content div#Main.home div.left div.status.warning p.visible").append(      '<span class="underline" >Click here</span> for more information.'   );      $("div#Content div#Main.home div.left div.status.warning").click(function() {      $(this).find("div.slide").slideToggle();      if ($(this).find("div.slide").css("display") == "block") {         $(this).find("div.close").show();      }      else {         $(this).find("div.close").hide();      }   });      $("div#Content div#Main.home div.left div.status.warning").hover(      function() {         if ($(this).find("div.slide").css("display") == "block") {            $(this).find("div.close").show();         }      },      function() {         $(this).find("div.close").hide();      }   );   });