/**
 * When a pages loads, i have to transfer a joke widget from the end of the
 * page to the place where it should be. This has to be done in order Google
 * indexes what it should instead of jokes only.
 */
document.observe ('dom:loaded', function () {
   var joke = $('main_content').down ('div#joke');
   if (joke != undefined) {
      joke.remove ();
      $('main_content').insert ({top: joke});
      joke.show ();
   }
});