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/" + 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/" + 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] = 'week 1 065.jpg';aPics[1] = 'speelpleinfotos 005.jpg';aPics[2] = 'speelpleinfotos 001.jpg';aPics[3] = 'marthe spitsespetse.JPG';aPics[4] = 'dbS4300061.JPG';aPics[5] = 'TO_SPPLFOTO_015.JPG';aPics[6] = 'TO_SPPLFOTO_005.JPG';aPics[7] = 'Sente06.jpg';aPics[8] = 'PICT1798.JPG';aPics[9] = 'Laarne10.jpg';aPics[10] = 'LARGE006.jpg';aPics[11] = 'IMG_2888.JPG';aPics[12] = 'IMG_2876.JPG';aPics[13] = 'IMG_1139.JPG';aPics[14] = 'IMG_1011.jpg';aPics[15] = 'IMG_0897.jpg';aPics[16] = 'IMG_0826.jpg';aPics[17] = 'IMG_0583.jpg';aPics[18] = 'Grimbergen02.jpg';aPics[19] = 'Gansspel03.jpg';aPics[20] = 'DSC_8014.JPG';aPics[21] = 'DSC_8006.JPG';aPics[22] = 'DSC_7956.JPG';aPics[23] = 'DSC_7884.JPG';aPics[24] = 'DSC_7839.JPG';aPics[25] = 'DSC_0650.JPG';aPics[26] = 'DSCN1211.JPG';aPics[27] = 'DSCN1203.JPG';aPics[28] = 'DSCN0945.JPG';aPics[29] = 'DSCF2080.JPG';aPics[30] = 'BrusselJES05.jpg';aPics[31] = 'BrusselJES04.jpg';aPics[32] = 'Beveren07.jpg';aPics[33] = 'April - Mei 2006 533.jpg'; aPics.sort(randOrd); imgRot1.addItem("../images/rechtenvanhetkind.jpg", "", ""); for(i=0;i<100;i++){ imgRot1.addItem(aPics[i],"",""); } imgRot1.rotate();