content['siteProgressreport'] = Class.create({

  THREAD_ID: null,
  EXEC_UID: null,
  arrParams:  null,

  initialize: function(arrInstVars, arrParams, arrLang)
  {
    this.THREAD_ID    = arrInstVars.THREAD_ID;
    this.EXEC_UID     = arrInstVars.EXEC_UID;
    
    this.arrImages = $$('a[name="showProgressPhotos"]');  
    
    this.arrImages.invoke('observe', 'click', this._showLargePhoto.bind(this));
  },

  _showLargePhoto: function(evt)
  {
    $(document).fire('slideShow:start', {intStartImgNum: evt.element().up('a').getAttribute('_num'), arrImagesElements: this.arrImages});
    evt.stop();
  }
});
arrJsLoaded['content.siteProgressreport.js']=true;init.jsLoaded("content.siteProgressreport.js");