$(function() {
  // Rotate the headers a bit, randomly.
  $('h1.title, ul.all_tags li').each(function() {
    amount = Math.random() * 1.5;
    if (Math.random() > 0.5) amount = -amount;
    $(this).css({
      '-webkit-transform':'rotate(' + amount + 'deg)',
      '-moz-transform':'rotate(' + amount + 'deg)',
    })
  });
});
