
theimage = new Array();

///// Configurable Variables

// The dimensions of ALL the images should be the same or some of them may look stretched or reduced in Netscape 4.
// Format: theimage[...]=[name/description, image_src, linking_url]
theimage[0]=["Photo1", "images/photo1.jpg", "index.html"];
theimage[1]=["Photo2", "images/photo2.jpg", "index.html"];
theimage[2]=["Photo3", "images/photo3.jpg", "index.html"];
theimage[3]=["Photo4", "images/photo4.jpg", "index.html"];
theimage[4]=["Photo5", "images/photo5.jpg", "index.html"];
theimage[5]=["Photo6", "images/photo6.jpg", "index.html"];
theimage[6]=["Photo7", "images/photo7.jpg", "index.html"];
theimage[7]=["Photo8", "images/photo8.jpg", "index.html"];
theimage[8]=["Photo9", "images/photo9.jpg", "index.html"];
theimage[9]=["Photo10", "images/photo10.jpg", "index.html"];
theimage[10]=["Photo11", "images/photo11.jpg", "index.html"];
theimage[11]=["Photo12", "images/photo12.jpg", "index.html"];
theimage[12]=["Photo13", "images/photo13.jpg", "index.html"];




///// Plugin variables

playspeed=4000;// The playspeed determines the delay for the "Play" button in ms
dotrans=1; // if value = 1 then there are transitions played in IE
transtype='blendTrans';// 'blendTrans' or 'revealtrans'
transattributes='duration=1,transition=23';// duration=seconds,transition=#<24
randomorder=0;
linksperline=4; // For the text links
playdiffernce=500; // The speed that the autplay speed is changed by
autostart=1;
preloadslides=1;
//End editable portion

// Random order script
function makeRandom() {
tempimage = new Array();
for(p=0;p<theimage.length;p++){
for(p1=0;p1>-1;p1) {tempNum = Math.floor(Math.random()*theimage.length)
if(!tempimage[tempNum]){tempimage[tempNum]=theimage[p];break}}}
for(p=0;p<theimage.length;p++)theimage[p]=tempimage[p]}
if(randomorder==1)makeRandom()

// Preloader
function preloadSlide() {for(k=0;k<til;k++) {theimage[k][1]=new Image().src=theimage[k][1];}}

// Add extra functions between the {} if you need other functions that require the onload
window.onload=function(){
if(window.preloadslides)preloadSlide();if(window.autostart)slidePlay();}

// NS4 resize handler
window.onresize=function(){
if(document.layers)this.location=this.location;}


