/*
	© DynamicNet - 2007
*/
var Diaporama=Class.create();Diaporama.prototype={initialize:function(){this.currentIndex=0;this.photos=false;},bind:function(id){this.zone=$(id);},create:function(){while(this.zone.firstChild){this.zone.removeChild(this.zone.firstChild);}
if(this.photos&&this.photos[this.currentIndex]!=''){var _a=document.createElement("a");_a.href=this.photos[this.currentIndex];_a.rel="lightbox";}
this._img=document.createElement("img");this._img.src=this.thumbPhotos[this.currentIndex];if(_a){_a.appendChild(this._img);this.zone.appendChild(_a);}else{this.zone.appendChild(this._img);}},next:function(){if(this.currentIndex+1<this.thumbPhotos.length){this.currentIndex++;}else{this.currentIndex=0;}
this.create();},previous:function(){if(this.currentIndex-1>0){this.currentIndex--;}else{this.currentIndex=this.thumbPhotos.length-1;}
this.create();}};