<!-- Hide script from old browsers

//hey this is easy - just populate this array with

//the pictures you want in this slide show.

var listimages = new Array("/images/port/1.jpg","/images/port/2.jpg","/images/port/3.jpg","/images/port/4.jpg","/images/port/5.jpg","/images/port/6.jpg","/images/port/7.jpg","/images/port/8.jpg","/images/port/9.jpg","/images/port/10.jpg","/images/port/11.jpg","/images/port/12.jpg","/images/port/13.jpg","/images/port/14.jpg","/images/port/15.jpg","/images/port/16.jpg","/images/port/17.jpg","/images/port/18.jpg");
/* above is the array that holds our images, it is indexed from 0 to 
   (number of elements - 1) */

var thisPic = 0;  //the counter for the image array
var lastPic = 17;  //the last cell in our array = (number of pictures - 1)

cnnPix=new Array(lastPic);
for(var counter=0;counter<=lastPic;counter++){
cnnPix[counter] = new Image();
cnnPix[counter].src=listimages[counter];
}


//End hiding script from old browsers -->
