
<!-- Created on Jan 3, 2008 6:27:44 PM -->

/* define image width and height */

var pic_width=121;
var pic_height=83;

/* define image urls */

if (document.images)
{
     pic1= new Image(pic_width,pic_height);
     pic1.src="zEuchre.jpg"; 
     pic2= new Image(pic_width,pic_height);      
     pic2.src="zstatue.jpg"; 
     pic3= new Image(pic_width,pic_height);
     pic3.src="zjetty.jpg"; 
     pic4= new Image(pic_width,pic_height);
     pic4.src="zbeach.jpg"; 
     pic5= new Image(pic_width,pic_height);
     pic5.src="Photo_Page_files/ALSP-008.jpg";
     pic6= new Image(pic_width,pic_height);
     pic6.src="zBingo.jpg";
     pic7= new Image(pic_width,pic_height);
     pic7.src="zSunset.jpg";

 } 
/* define text for image captions */

var destext= new Array
     destext[0]="This caption for image 1";
     destext[1]="This caption for image 2";
     destext[2]="This caption for image 3";
     destext[3]="This caption for image 4";
     destext[4]="This caption for image 5";


var pics= new Array(7) 
     pics[0]=pic1.src;
     pics[1]=pic2.src;
     pics[2]=pic3.src;
     pics[3]=pic4.src;
     pics[4]=pic5.src; 
     pics[5]=pic6.src;
     pics[6]=pic7.src;
     

var numpics=7;
var thenum=0;
imgName="img1";
{
if (document.images)
{
document.write("<img src='"+pics[thenum]+"' border='0' width='"+pic_width+"' height='"+pic_height+"' name='img1'>\n");
setTimeout('change_it2()',5000); }
}
function change_it2()
{
var x=0;
thenum+=1;
if (thenum>numpics-1)
thenum=0;
document[imgName].src=pics[thenum];
x+=1;
setTimeout('change_it2()',5000);
}
