var slideurl=new Array()

		// URLs of your slides (pictures). Add as many as you like
		slideurl[0]="../common_gfx/jardins/0.jpg"
		slideurl[1]="../common_gfx/jardins/1.jpg"
		slideurl[2]="../common_gfx/jardins/2.jpg"

		var slidecomment=new Array()
		// Comment for each slide
		slidecomment[0]=""
		slidecomment[1]=""
		slidecomment[2]=""

		var slidelink=new Array()
		// Link for each slide
		slidelink[0]="../slideshowdemo/index.html"
		slidelink[1]="../textanimatordemo/index.html"
		slidelink[2]="http://www.wiac.org"

		// Width slideshow (pixels)
		var slidewidth=309

		// Height slideshow (pixels)
		var slideheight=70

		// Pause between each slide (seconds)
		var pauseslide=5

// Do not edit the code below this line //
/////////////////////////////////////////

var textposition="right_auto"
var slidecontent
// var max_space=19
var max_space=0
var space=" "
var i_substring=0
var i_space=max_space
var all_space=" "
var content=""
var pausefade=20
var i_slide=0
var i_filter=-1
var nextorprevious=1
var transparency=0
var transparencystep=5
var isloaded=false
var started=false
var stopshow=false

var newpause=pauseslide
var checkpause=200
var neximage=""
var howmanycomplete=0
var preload_slides=-1
var pauseslide=pauseslide*1000

var browserinfos=navigator.userAgent  
var ie=document.all&&!browserinfos.match(/Opera/)?1:0 
var ns6=document.getElementById&&!document.all?1:0
var ns4=document.layers?1:0
var op=browserinfos.match(/Opera/)

str="";

var preloadedimages=new Array()
for (i=0;i<slideurl.length;i++){
	preloadedimages[i]=new Image()
	preloadedimages[i].src=slideurl[i]
}

function initslideshow4() 
{
	setimagetocache()
	getcontent()
	if (ie) 
	{
		slidecontainer.innerHTML=slidecontent
	}
	if (ns6 || op) 
	{
		transparency=100
		document.getElementById('slidecontainer').innerHTML=slidecontent
	}
	var inittimer=setTimeout("checkifcached()",100)
}

function setimagetocache() 
{
	preload_slides++
	if (preload_slides<=slideurl.length) 
	{
		nextimage=new Image();
   		nextimage.src=slideurl[preload_slides];
		checkautocached()
	}
}

function checkautocached() 
{
	if (nextimage.complete) 
	{
		howmanycomplete++
		setimagetocache()
	}
   	else 
   	{
   		var timer2=setTimeout("checkautocached()",checkpause);
	}
}

function stopslideshow() {
	stopshow=true
}

function playslideshow() {
	stopshow=false
}
			
function checkifcached() {
	if (i_slide<=howmanycomplete) {
		if (ie) {
			if (textposition=="top_auto" || textposition=="bottom_auto"  || textposition=="left_auto" || textposition=="right_auto" || textposition=="top_auto_nocontrols" || textposition=="bottom_auto_nocontrols") {
				var nextimer=setTimeout("autoslide()",newpause)
			}
			if (textposition=="top_hand" || textposition=="bottom_hand" || textposition=="left_hand" || textposition=="right_hand") {
				if (started) {
					handslide()
				}
				started=true
			}
		}
		if (ns6 || op) {
			if (textposition=="top_auto" || textposition=="bottom_auto"  || textposition=="left_auto" || textposition=="right_auto" || textposition=="top_auto_nocontrols" || textposition=="bottom_auto_nocontrols") {
				unfadeslide()
			}
			if (textposition=="top_hand" || textposition=="bottom_hand" || textposition=="left_hand" || textposition=="right_hand") {
				if (started) {
					fadeslidehand()
				}
				started=true
			}
		}
   	}
   	else {
		newpause=newpause-checkpause
		if (newpause<1200) {newpause=1200}
   		var timer2=setTimeout("checkifcached()",checkpause);
	}
}

function getcontent() 
{
	slidecontent="<img name='slideimage' src='"+slideurl[i_slide]+"' border=0>"
}

function unfadeslide() {
	if (transparency<100){
		transparency+=transparencystep
		if (ns6) {
			document.getElementById('slidecontainer').style.MozOpacity=transparency/100
		}
		var fadetimer=setTimeout("unfadeslide()",pausefade)
	}
	else {
		clearTimeout(fadetimer)
		var fadetimer=setTimeout("fadeslide()",newpause)
	}
}

function unfadeslidehand() {
	if (transparency<100){
		transparency+=transparencystep
		if (ns6) {
			document.getElementById('slidecontainer').style.MozOpacity=transparency/100
		}
		var fadetimer=setTimeout("unfadeslidehand()",pausefade)
	}
	else {
		clearTimeout(fadetimer)
	}
}

function fadeslide() {
	if (!stopshow) {
		if (transparency>0){
			transparency-=transparencystep
			if (ns6) {
				document.getElementById('slidecontainer').style.MozOpacity=transparency/100
			}
			var fadetimer=setTimeout("fadeslide()",pausefade)
		}
		else {
			var autotimer=setTimeout("autoslide()",200)
		}
	}
	else {
		var stoptimer=setTimeout("fadeslide()",500)
	}
}

function fadeslidehand() {
	if (transparency>0){
		transparency-=transparencystep
		if (ns6) {
			document.getElementById('slidecontainer').style.MozOpacity=transparency/100
		}
		var fadetimer=setTimeout("fadeslidehand()",pausefade)
	}
	else {
		i_slide++
		if (i_slide>=slideurl.length) {i_slide=0}
		getcontent()
		document.getElementById('slidecontainer').innerHTML=slidecontent
		transparency=0
		var fadetimer=setTimeout("unfadeslidehand()",500)
	}
}

function autoslide(){
	if (ie) {
		if (!stopshow) {
			newpause=pauseslide
			i_slide++
			if (i_slide>=slideurl.length) {i_slide=0}
			getcontent()
			i_filter++
			if (i_filter>slidecontainer.filters.length-1) {i_filter=0}	
			slidecontainer.filters[i_filter].apply()
			slidecontainer.innerHTML=slidecontent			
			slidecontainer.filters[i_filter].play()
			checkifcached()
		}
		else {
			var stoptimer=setTimeout("autoslide()",500)
		}
	}
	if (ns6 || op) {
		newpause=pauseslide
		i_slide++
		if (i_slide>=slideurl.length) {i_slide=0}
		getcontent()
		document.getElementById('slidecontainer').innerHTML=slidecontent
		transparency=0
		i_space=max_space
		checkifcached()
	}
}

function handslide(){
	i_slide++
	if (i_slide>=slideurl.length) {i_slide=0}
	getcontent()
	if (ie) {
		i_filter++
		if (i_filter>slidecontainer.filters.length-1) {i_filter=0}	
		slidecontainer.filters[i_filter].apply()
		slidecontainer.innerHTML=slidecontent
		slidecontainer.filters[i_filter].play()
	}
	if (ns6 || op) {
		document.getElementById('slidecontainer').innerHTML=slidecontent
		transparency=100
	}
}

function simpleslideshow() {
	i_slide++
	if (i_slide>=slideurl.length) {i_slide=0}
	document.slideimage.src=preloadedimages[i_slide].src
	var fadetimer=setTimeout("simpleslideshow()",pauseslide)
}

if (ie) 
{
	str=""
	str=str+'<div style="position:relative;width:'+slidewidth+'px;height:'+slideheight+'px;overflow:hidden"><div id="slidecontainer" style="position:absolute;width:'+slidewidth+'px;height:'+slideheight+'px;top:0px;left:0px;filter:progid:DXImageTransform.Microsoft.GradientWipe(duration=1.2,wipeStyle=1)"></div></div>'
	// document.write(str);
	// window.onload=initslideshow4
}
else if (ns6||op) 
{
	// document.write('<div style="position:relative;width:'+slidewidth+'px;height:'+slideheight+'px;overflow:hidden">')
	// document.write('<div id="slidecontainer" style="position:absolute;width:'+slidewidth+'px;height:'+slideheight+'px;top:0px;left:0px;-moz-opacity:100"></div>')
	// document.write('</div>')
	// window.onload=initslideshow4
}
else if (ns4) 
{
	document.write('<img name="slideimage" src="'+slideurl[0]+'" border=0>')
	i_slide=-1
	// window.onload=simpleslideshow
}


