/**
 * Utility to enable lightbox.
 */

var LightBoxIni = {

  init: function()
  {
    $('a.gallery').attr('rel','prettyPhoto[gallery]').prettyPhoto();
    $('.append_gallery').append($('<a href="#">view full image gallery</a>'));
    $('.append_gallery a') .click(LightBoxIni.display);
  },

  display: function()
  {
    var images = [];
    $('a.gallery').each(function() { images.push($(this).attr('href')); });
    $.prettyPhoto.open(images,[],[]);
    return false;
  }

};

$(document).ready(LightBoxIni.init);
