
$(document).ready(function() {
       // hides the enquirybox as soon as the DOM is ready
        $('#enquirybox').hide();

       // toggles the enquirybox on clicking the Enquire button
        $('a#form-toggle').click(function() {
          $('#enquirybox').toggle(400);		  
          return false;
        });


      // hides the enquirybox on clicking the noted link
        $('a#form-close').click(function() {
          $('#enquirybox').hide(400);
          return false;
        });

});

