/* Floating Slide Show Script C.2004 by CodeLifter.com */// You *must* add onload="runSlideShow()" to the <body> tag// of the page.// In the section marked Edit the HTML, above, remember to// set the path and size for the first image.// =======================================// Set the following variables// =======================================// Set slideShowSpeed (milliseconds):var slideShowSpeed = 10000// Duration of crossfade (seconds) for IE:var crossFadeDuration = 1// Set the positioning variables, below:// Negative numbers are relative to right (whereX) or bottom (whereY)// Positive numbers are relative to left (whereX) or (whereY) top// Experiment with values to get positioning exact, and allow// for the dimensions of the image in the positioningvar whereX = 00;var whereY = 00;// Specify the image files:var Pic = new Array() // don't touch this!// to add more images, just continue// the pattern, adding to the array belowPic[0] = 'images/arno1.jpg'Pic[1] = 'images/arno2.jpg'Pic[2] = 'images/arno3.jpg'Pic[3] = 'images/arno4.jpg'Pic[4] = 'images/arno5.jpg'Pic[5] = 'images/arno6.jpg'Pic[6] = 'images/arno7.jpg'Pic[7] = 'images/arno8.jpg'Pic[8] = 'images/arno9.jpg'Pic[9] = 'images/arno10.jpg'Pic[10] = 'images/arno11.jpg'Pic[11] = 'images/arno12.jpg'// =======================================// Do not edit *anything* below this line!// =======================================var nn=(navigator.appName.indexOf("Netscape")!=-1);var t;var j=0;var p=Pic.length;var preLoad=new Array();for (i=0;i<p;i++){preLoad[i]=new Image();preLoad[i].src = Pic[i];}function runSlideShow(){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();}if (document.all || document.getElementById){document.images.SlideShow.src = preLoad[j].src;}else{document.FloatSlideShow.document.images["SlideShow"].src = preLoad[j].src;}if (document.all){document.images.SlideShow.filters.blendTrans.Play();}j=j+1;if (j>(p-1))j=0;t=setTimeout('runSlideShow()', slideShowSpeed);}var dD=document,dH=dD.html,dB=dD.body,px=dD.layers?'':'px';
