// RANDOM IMAGE ROTATION
// Original Script by Ed Bennett - http://www.wonderwinds.com/
// Modifications by Andrea Walters - http://www.kestrel-designs.com/
 
// The only changes to this script necessary are the additions of new photos.
// Please scroll down to end of the photo list for directions. -->
 
  var beg = "<a href=\"";
  var mid = "\"><img border=\"0\" src=\"";
  var nex = "\" alt=\"";
  var end = "\" width=\"134\" height=\"97\"></a>";
  var alttext = new Array();
  var images = new Array();
  var links = new Array();
 
  alttext[0] = "Seussical The Musical";
  images[0] = "/images/Rotating/CatInTheHat.jpg";
  links[0] = "/shows/2007-2008/Seussical.php";
 
  alttext[1] = "Blues Clues Live";
  images[1] = "/images/Rotating/BluesClues.jpg";
  links[1] = "/shows/2007/BluesCluesLive.php";
 
  alttext[2] = "Cinderella";
  images[2] = "/images/Rotating/Cinderella.jpg";
  links[2] = "/shows/2005-2006/Cinderella.php";
 
  alttext[3] = "Alien";
  images[3] = "/images/Rotating/Alien.jpg";
  links[3] = "/index.php";
 
  alttext[4] = "Frog And Toad";
  images[4] = "/images/Rotating/FandT.jpg";
  links[4] = "/shows/2007/FrogAndToad.php";
 
  alttext[5] = "Three Guys Naked From The Waist Down";
  images[5] = "/images/Rotating/3GUYS.jpg";
  links[5] = "/shows/2007/3GuysNaked.php";
 
// Add new image definitions here. For example:
// alttext[20] = "Show Name"
// images[20] = "/images/Rotating/imagename.jpg"
// links[20] = "/shows/season/link.php"

// Do NOT edit anything below this line!!!
// If you need help, email: kestreldesigns@yahoo.com
 
  var rannum1 = Math.floor(Math.random() * images.length)
  var rannum2;
  do
    {
    rannum2 = Math.floor(Math.random() * images.length)
    }
  while (rannum2 == rannum1)
  var rannum3;
  do
    {
    rannum3 = Math.floor(Math.random() * images.length)
    }
  while ((rannum3 == rannum1) || (rannum3 == rannum2))
