  //Load the images and corresponding URLs into arrays
  Images = new Array()
  Urls = new Array()
 
	Images[0] = "images/addawn.jpg"
	Images[1] = "images/adwin.jpg"
	Images[2] = "images/adfsheye.jpg"
	Images[3]="images/beachcc.jpg"
	Images[4]="images/flbougp.jpg"
	Images[5]="images/flhbwhy2.jpg"

   //start with first image/URL
   var start = 0;
   var end =5;
   var Num = start-1;
 
   function animate()
   {
     Num++;     //go to next iamge
     if (Num > end)    //reached last image
     {
        Num =start;    //go back to first image
     }
     document.animation.src = Images[Num];  //show current image
     return true;
   }
 
   function begin()
   {
     if (Num < 0) 
        {Num = 0; }
     document.location = Urls[Num];  //link to appropriate URL
   }

