$(document).ready(function() {
 // hides the questionbox as soon as the DOM is ready (a little sooner that page load)
  $('#questionbox').hide();
  
 // shows and hides and toggles the questionbox on click - on 7.9.09 changed # (ID) to . (class) for .question-show and .question-hide so could trigger with text linked based class class calls on the Contact page
  $('.question-show').click(function() {
    $('#questionbox').show('slow');
    return false;
  });
  $('.question-hide').click(function() {
    $('#questionbox').hide('fast');
    return false;
  });
  $('#question-toggle').click(function() {
    $('#questionbox').toggle(400);
    return false;
  });

 // slides down, up, and toggle the questionbox on click    
  $('#question-down').click(function() {
    $('#questionbox').slideDown('slow');
    return false;
  });
  $('#question-up').click(function() {
    $('#questionbox').slideUp('fast');
    return false;
  });
  $('#question-slidetoggle').click(function() {
    $('#questionbox').slideToggle(400);
    return false;
  });
});