//JS file for Colourful Ranch

// Navigation rollovers used example 06-11

var pics = new Array("images/home.jpg","images/dogs.jpg","images/birds.jpg","images/contact.jpg");


//Slideshow.....................

myPix = new Array( "images/slideshow/poms.jpg", "images/slideshow/fivepups.jpg", "images/slideshow/dpups.jpg", "images/slideshow/anniepup.jpg",  "images/slideshow/lovebirds_green.jpg", "images/slideshow/finchesblue.jpg", "images/slideshow/dandylion.jpg", "images/slideshow/pupdotty.jpg", "images/slideshow/letty.jpg", "images/slideshow/tamara_dogs.jpg", "images/slideshow/sunset.jpg", "images/slideshow/sunrise_firepit.jpg", "images/slideshow/sunrise_rooftop.jpg", "images/slideshow/sunrise_swirls.jpg", "images/slideshow/bench.jpg" );
thisPic = 0;
imgCt = myPix.length - 1;

var captions = new Array( "Joey", "Dotty as pup","Mini Stallion, Ruffy", "Ruffy and Letty", "Freddy the Alpaca", "Freddy with children", "alpaca x 2", "Joey", "Shyba", "Playful times", "Time out", "hey hey who are you?", "Sassy", "Sunset", "Sunrise" );

function chgSlide(direction) 
{
  if (document.images) 
  {
   thisPic = thisPic + direction;
   if (thisPic > imgCt) 
   {
    thisPic = 0;
   }
   if (thisPic < 0) {
    thisPic = imgCt;
   }
   document.myPicture.src=myPix[thisPic];
  }
  {
   document.getElementById("caption").innerHTML = captions[thisPic];
  }
}


