// --- Provide style hook for :hover state of button elements
$(document).ready(function() {
    $('button').hover(function() {
      $(this).addClass('hoverme');
    }, function() {
      $(this).removeClass('hoverme');
    });
  });   

// --- Provide style hook for :hover state of elements, other than buttons
$(document).ready(function() {
    $('.hoverit').hover(function() {
      $(this).addClass('pretty-hover');
    }, function() {
      $(this).removeClass('pretty-hover');
    });
  });

// --- Toggle Question of the Month
$(document).ready(function()
{
  $(".answer").hide();
  $(".question").click(function()
  {
    $(this).next(".answer").slideToggle(900);
  });
});	
