slideimg1 = new Array();
slideimg2 = new Array();
slideimg3 = new Array();

slideimg1[0] = "img/giress.gif";
slideimg1[1] = "img/logo_cdrol.gif";
slideimg1[2] = "img/logo-agac.gif";
slideimg1[3] = "img/royallepage.jpg";
slideimg1[4] = "img/vaillant.jpg";

slideimg2[0] = "img/jeancoutu.gif";
slideimg2[1] = "img/cld.gif";
slideimg2[2] = "img/muncantley.gif";
slideimg2[3] = "img/mrc.gif";

slideimg3[0] = "img/Ottawa1.jpg";
slideimg3[1] = "img/ParcGatineau1.jpg";
slideimg3[2] = "img/ParcGatineau2.jpg";
slideimg3[3] = "img/ParcGatineau3.jpg";
slideimg3[4] = "img/ParcGatineau.jpg";

imgcnt = 0;

slideshowspeed=2000
slideobj = imgcnt;
slidearray = slideimg1;

function slideit(){
if(document.getElementById('imgslide1') != null){
	slideobj = document.getElementById('imgslide1');
	slidearray = slideimg1;
}
if(document.getElementById('imgslide2') != null){
	slideobj = document.getElementById('imgslide2');
	slidearray = slideimg2;
}
if(document.getElementById('imgslide3') != null){
	slideobj = document.getElementById('imgslide3');
	slidearray = slideimg3;
}

slideobj.src = slidearray[imgcnt];

if (imgcnt<slideimg3.length-1)
imgcnt++
else
imgcnt=0
setTimeout("slideit()",slideshowspeed)
}
slideit()
