$(document).ready(function () {
   $("span#off").hide();
   if($("#post-7") || $("#post-464")) { // we are on the gallery page
      var href=$("#gallery_files a:eq(0)").attr("href");
      var html=$("#gallery_files a:eq(0)").html();
      $("#gallery_top_left").html('<a href="' + href + '">' + html + '</a>');
      href=$("#gallery_files a:eq(1)").attr("href");
      html=$("#gallery_files a:eq(1)").html();
      $("#gallery_top_right").html('<a href="' + href + '">' + html + '</a>');
      href=$("#gallery_files a:eq(2)").attr("href");
      html=$("#gallery_files a:eq(2)").html();
      $("#gallery_bottom_left").html('<a href="' + href + '">' + html + '</a>');
      href=$("#gallery_files a:eq(3)").attr("href");
      html=$("#gallery_files a:eq(3)").html();
      $("#gallery_bottom_right").html('<a href="' + href + '">' + html + '</a>');      
      $("#gallery_top_left").append('<div class="gallery_caption">' + $("#gallery_top_left img").attr("title") + '</div>');
      $("#gallery_top_right").append('<div class="gallery_caption">' + $("#gallery_top_right img").attr("title") + '</div>');
      $("#gallery_bottom_left").append('<div class="gallery_caption">' + $("#gallery_bottom_left img").attr("title") + '</div>');
      $("#gallery_bottom_right").append('<div class="gallery_caption">' + $("#gallery_bottom_right img").attr("title") + '</div>');

      $(".gallery_thumb").hover(function() {
         $(this).children("div.gallery_caption").show();
      },
      function() {
         $(this).children("div.gallery_caption").hide();
      });
   }
});
