﻿$(document).ready(function () {

    $("#help_box").hide();

    $("#help_btn").hover(
          function () {
              $("#help_box").fadeIn("slow");
          },
          function () {
              $("#help_box").fadeOut("slow");
          }
);
});
