function imageRotator(id, name, pause) { this.ID = id; this.Name = name; this.Current = -1; this.Images = new Array(); this.ImgPL = new Array(); this.Titles = new Array(); this.URLs = new Array(); this.Pause = pause; this.addItem = addItem; this.rotate = rotate; this.go = go; } function addItem(sImg, sTitle, sUrl){ var i = this.Images.length; this.Images[i] = sImg; this.Titles[i] = sTitle; this.URLs[i] = sUrl; this.ImgPL[i] = new Image(); } function rotate(){ this.Current = this.Current + 1; if(this.Current > (this.Images.length - 1)){ this.Current = 0; } if(this.ImgPL[this.Current].src == ""){ this.ImgPL[this.Current].src = "fotos_voorpagina/" + this.Images[this.Current]; } var obj = document.getElementById(this.Name); if (document.all){ obj.style.filter="blendTrans(duration=2)"; obj.style.filter="blendTrans(duration=CrossFadeDuration)"; obj.filters.blendTrans.Apply(); } //obj.src = this.ImgPL[this.Current].src; obj.src = "fotos_voorpagina/" + this.Images[this.Current]; if (document.all) obj.filters.blendTrans.Play(); setTimeout(this.ID + ".rotate();", this.Pause); } function go(){ window.location.href = this.URLs[this.Current]; } function randOrd(){ return (Math.round(Math.random())-0.5); } var imgRot1 = new imageRotator("imgRot1" ,"imgRotator", 7000); //Random array... aPics = new Array(); aPics[0] = 'action paint.JPG';aPics[1] = 'Zomervakantie 95 (Amke).jpg';aPics[2] = 'Waasmunster (14).JPG';aPics[3] = 'VDSANT_BONGA10_014.jpg';aPics[4] = 'Sint-Laureins 2010.JPG';aPics[5] = 'SNC12643.JPG';aPics[6] = 'SNC11639.JPG';aPics[7] = 'P1120901.JPG';aPics[8] = 'P1120665 (Amke).JPG';aPics[9] = 'P1120457.JPG';aPics[10] = 'Maarkedal (3).JPG';aPics[11] = 'Lokeren - Boskes (7).JPG';aPics[12] = 'Lokeren - Boskes (20).JPG';aPics[13] = 'IMG_9021.JPG';aPics[14] = 'IMG_6871.jpg';aPics[15] = 'IMG_1056.JPG';aPics[16] = 'IMG_1054.JPG';aPics[17] = 'IMG_0464.JPG';aPics[18] = 'IMG_0155.JPG';aPics[19] = 'IMG_0105.JPG';aPics[20] = 'IMG_0097.JPG';aPics[21] = 'Hamme - Zogge (28).JPG';aPics[22] = 'Hamme - Moerzeke (5).JPG';aPics[23] = 'Hamme - Moerzeke (18).JPG';aPics[24] = 'Dendermonde - Speelplaneet (21).JPG';aPics[25] = 'Dendermonde - Speelplaneet (17).JPG';aPics[26] = 'DSC_3365.JPG';aPics[27] = 'DSC08492.JPG';aPics[28] = 'DSC08482.JPG';aPics[29] = 'DSC08419.JPG';aPics[30] = 'DSC02137.JPG';aPics[31] = 'DSC02044.JPG';aPics[32] = 'CIMG4707.JPG';aPics[33] = 'BILD0021.JPG';aPics[34] = 'Aalter - Bellem (15).JPG';aPics[35] = '05072010(001).jpg'; aPics.sort(randOrd); imgRot1.addItem("../images/rechtenvanhetkind.jpg", "", ""); for(a=0;a < 36 ;a++){ imgRot1.addItem(aPics[a],"",""); } imgRot1.rotate();