function cultureslideshow(instancename){
	this.instancename=instancename;
	this.interval='';
	this.intervalset=false;
	this.id=0;
	this.nb=-1;
	this.a_event=new Array();
	
	this.init = function(eventid,thumb,title,description,lieu,quand,href){
		this.nb++;
		this.a_event[this.nb]=new Array(5);
		this.a_event[this.nb][0]=eventid;
		this.a_event[this.nb][1]=thumb;
		this.a_event[this.nb][2]=title;
		this.a_event[this.nb][3]=description;
		this.a_event[this.nb][4]=lieu;
		this.a_event[this.nb][5]=quand;
		this.a_event[this.nb][6]=href;
	}
	this.show = function(){
		document.getElementById('cultureevent_div1').innerHTML = '';
		document.getElementById('cultureevent_div2').innerHTML = '';
		if(this.a_event[this.id][0]!=''&&this.a_event[this.id][1]!='')
			document.getElementById('cultureevent_div1').innerHTML = '<a target="_blank" href="view.php?table=t_culture&what=document&id='+this.a_event[this.id][0]+'" title="Cliquez ici pour agrandir"><img src="'+this.a_event[this.id][1].src+'" /></a>';
		else if(this.a_event[this.id][0]!=''&&this.a_event[this.id][1]=='')
			document.getElementById('cultureevent_div1').innerHTML = '<a target="_blank" href="view.php?table=t_culture&what=document&id='+this.a_event[this.id][0]+'">[ Cliquez ici ]</a>';
		else if(this.a_event[this.id][0]==''&&this.a_event[this.id][1]!='')
			document.getElementById('cultureevent_div1').innerHTML = '<img src="'+this.a_event[this.id][1].src+'" />';
		document.getElementById('cultureevent_div2').innerHTML = '<span><b>'+this.a_event[this.id][2]+'</b><span>';
		if(this.a_event[this.id][3]!='')
			document.getElementById('cultureevent_div2').innerHTML += '<br /><div>'+this.a_event[this.id][3]+'</div>';
		if(this.a_event[this.id][4]!='')
			document.getElementById('cultureevent_div2').innerHTML += '<br /><div><b>Lieu: </b>'+this.a_event[this.id][4]+'</div>';
		if(this.a_event[this.id][5]!='')
			document.getElementById('cultureevent_div2').innerHTML += '<br /><div><b>Quand: </b>'+this.a_event[this.id][5]+'</div>';
		if((this.a_event[this.id][6]!='')&&(this.a_event[this.id][6]!='http://'))
			document.getElementById('cultureevent_div2').innerHTML += '<br /><a target="_blank" href="'+this.a_event[this.id][6]+'">Site Internet</a>';
	}
	this.previous = function(){
		this.id--;
		if(this.id<0)
			this.id=this.nb;
		this.show();
	}
	this.next = function(){
		this.id++;
		if(this.id>this.nb)
			this.id=0;
		this.show();
	}
	this.play = function(){
		if(this.intervalset==false){
			this.interval=setInterval(this.instancename+'.next();',8000);
			this.intervalset=true;
		}
	}
	this.pause = function(){
		if(this.intervalset==true){
			clearInterval(this.interval);
			this.intervalset=false;
		}
	}
}
