// Set slideShowSpeed (milliseconds) var slideShowSpeed = 5000 // Duration of crossfade (seconds) var crossFadeDuration = 2 var SSPic = new Array() var SSTekst = new Array() var SSLinks = new Array() SSPic[0] = "/fotoalbum/thumb/1154_dmqb97pgeit.jpg"; SSTekst[0] = ""; SSLinks[0] = "fotoalbum.php?foto=63944"; SSPic[1] = "/fotoalbum/thumb/1154_tp5evpoamhy.jpg"; SSTekst[1] = ""; SSLinks[1] = "fotoalbum.php?foto=63943"; SSPic[2] = "/fotoalbum/thumb/1154_42ms3dyn3.jpg"; SSTekst[2] = ""; SSLinks[2] = "fotoalbum.php?foto=63942"; SSPic[3] = "/fotoalbum/thumb/1154_306kuvn3dyg.jpg"; SSTekst[3] = ""; SSLinks[3] = "fotoalbum.php?foto=63938"; SSPic[4] = "/fotoalbum/thumb/1154_b08fjdim9tr.jpg"; SSTekst[4] = ""; SSLinks[4] = "fotoalbum.php?foto=63937"; SSPic[5] = "/fotoalbum/thumb/1154_wnemp7uk5ke.jpg"; SSTekst[5] = ""; SSLinks[5] = "fotoalbum.php?foto=63936"; // ======================================= // do not edit anything below this line // ======================================= var t var j = 0 var p = SSPic.length var preLoad = new Array() for (i = 0; i < p; i++){ preLoad[i] = new Image() preLoad[i].src = SSPic[i] } function getBrowserType(){ if (navigator.userAgent.indexOf("Opera")!=-1 && document.getElementById) type="OP"; else if (document.all) type="IE"; else if (document.layers) type="NN"; else if (!document.all && document.getElementById) type="MO"; //alert(type); return type; } function runSlideShow(){ var bType = getBrowserType(); /* if (document.all){ document.images.SlideShow.style.filter='blendTrans(duration=2)' document.images.SlideShow.style.filter='blendTrans(duration=crossFadeDuration)' document.images.SlideShow.filters.blendTrans.Apply() } document.images.SlideShow.src = preLoad[j].src if (document.all){ document.images.SlideShow.filters.blendTrans.Play() } SlideShowImgLink.href = SSLinks[j]; SlideShowTekstLink.href = SSLinks[j]; SlideShowTekst.innerHTML = SSTekst[j]; */ if(bType == "IE"){ document.images.SlideShow.style.filter='blendTrans(duration=2)' document.images.SlideShow.style.filter='blendTrans(duration=crossFadeDuration)' document.images.SlideShow.filters.blendTrans.Apply() } if(bType == "IE" || bType == "NN" ){ document.images.SlideShow.src = preLoad[j].src if(bType == "IE"){ document.images.SlideShow.filters.blendTrans.Play() } SlideShowImgLink.href = SSLinks[j]; // SlideShowTekstLink.href = SSLinks[j]; // bij aanzetten komt de focus op de fck editor, onderaan de pagina SlideShowTekst.innerHTML = SSTekst[j]; }else if( bType == "OP" ){ document.images.SlideShow.src = preLoad[j].src document.getElementById("SlideShowImgLink").href = SSLinks[j]; // document.getElementById("SlideShowTekstLink").href = SSLinks[j]; document.getElementById("SlideShowTekst").innerHTML = SSTekst[j]; }else if( bType == "MO" ){ document.images.SlideShow.src = preLoad[j].src document.getElementById("SlideShowImgLink").href = SSLinks[j]; // document.getElementById("SlideShowTekstLink").href = SSLinks[j]; document.getElementById("SlideShowTekst").innerHTML = SSTekst[j]; } j = j + 1 if (j > (p-1)) j=0 t = setTimeout('runSlideShow()', slideShowSpeed) } runSlideShow();