// New wh.js, created by magnus 18.02.10 because the old one caused printing
// problems.

jQuery.noConflict();
jQuery(document).ready(function($) {
  $('div.sign div.dyn').hide();
  $('div.sign').click(function() {
    $('div.dyn', this).toggle();
  });
});

