﻿var Gallery={
Title:new Array(),
ImgSmall:new Array(),
ImgBig:new Array(),
Index:new Number(0),
ImgID:new String('ctl00_imgsmall'),
ImgNext:new String('ImgNext'),
ImgPrev:new String('ImgPrev'),
ImgElarg:new String('ImgElarg'),
ImgLoader:new String('ImgLoader')
,Show:function()
{
  if (this.Index==this.Title.length || this.Index<0)
   this.Index=0;

   hs(this.ImgID,'none',0);
   hs(this.ImgLoader,'block',0); 
   $('ImgGalleryTitle').innerHTML=this.Title[this.Index]
   $(this.ImgID).src=this.ImgSmall[this.Index];
   $(this.ImgID).onload=function(){hs(Gallery.ImgID,'block',0);hs(Gallery.ImgLoader,'none',0);};
}

,Next:function()
{
 this.Index++;
 this.Show();

}


,Prev:function()
{
 this.Index--;
 this.Show();

}

,Elrage:function()
{

  showLightbox(this.ImgBig[this.Index],this.Title[this.Index])


}

}

