(function($){
  // Apply this to form elements
  $.fn.photoZoom = function(options) {
    this.find('img').click(function(evt){
      Lightview.show({
        href: evt.target.src
      });
/*      Lightview.show({
        href: '/ajax/',
        rel: 'ajax',
        title: 'Login',
        caption: 'Enter your username and password to login',
        options: {
          autosize: true,
          topclose: true,
          ajax: {
            method: 'get',
            evalScripts: true,
            onComplete: function(){ $('name').focus(); }
          }
        }
      });*/
    });
  };
  
})(jQuery);
