$(document).ready(function() {
  $('#pullermessage').hide();
  $('#puller').click(function() { 
      $('#pullermessage').slideToggle('fast');
      return false;
  });
});
