  // Gallery
  $(document).ready(
    function(){
      init("#image");
    }
  );
  function init(target){
    $('a').each(
      function() {
        if(this.getAttribute('href') &&
          (this.getAttribute('rel') == 'pagination')) {
          this.onclick = function(){
            $(target).html('<img src="' + this.href +
                           '" alt="' + this.getAttribute("title") +
                           '" title="' + this.getAttribute("title") +
                           '" />');
            return false;
          }
        }
      }
    );
  }