function initgallery()
{
  $('a').each(function()
  {
    if (this.getAttribute('href') && (this.getAttribute('rel') == 'pagination'))
    {
      this.onclick = function ()
      {
        $("#image").html('<img src="'+this.href+'" width="370" height="265" alt="'+this.getAttribute("title")+'" title="'+this.getAttribute("title")+'" />');
        return false;
      }
    }
  });
}
