
/************************************************************************
  This array contains slide info. Every slide has 3 entries: (1)Alt info,
  the name of the animal, (2)the image file URL, and (3)the sound
  file URL. The array is used by zooslides.js to present the slides.
************************************************************************/
var xl = 4;
var color = new Array (
             'Toucan',                    /* Toucan */
             'bins/toucan02.jpg',
             '',
             new Image(),

             'Butterfly',                 /* Butterfly */
             'bins/orange.jpg',
             '',
             new Image(),

             'Red Fox',                   /* Fox */
             'bins/fox03.jpg',
             'bins/fox.wav',
             new Image(),

             'Butterfly-Sunflower',       /* Butterfly - Sunflower */
             'bins/btrfly02.jpg',
             '',
             new Image(),

             'Frog',                      /* Frog */
             'bins/frog10.jpg',
             'bins/frog.au',
             new Image(),

             'Swan',                      /* White Swan */
             'bins/swan.jpg',
             '',
             new Image(),

             'Swan',                      /* Black Swan */
             'bins/swan02.jpg',
             '',
             new Image(),

             'American Lady',            /* American Lady */
             'bins/AmericanLady.jpg',
             '',
             new Image(),

             'Goldfinch',                /* Goldfinch */
             'bins/Goldfinch.jpg',
             '',
             new Image(),

             'Gecko',                     /* Gecko */
             'bins/gecko01.jpg',
             '',
             new Image(),

             'Butterfly',                 /* Butterfly */
             'bins/btrfly07.jpg',
             '',
             new Image(),

             'Male Cardinal',             /* Male Cardinal */
             'bins/cardinalM.jpg',
             'bins/cardinal.wav',
             new Image(),

             'Female Cardinal',           /* Female Cardinal */
             'bins/cardinalF.jpg',
             'bins/cardinal.wav',
             new Image(),

             'Dragonfly',                 /* Dragonfly */
             'bins/dragonfly.jpg',
             '',
             new Image(),

             'Poison Dart Frog',          /* Poison Dart Frog */
             'bins/frog01.jpg',
             'bins/frog.au',
             new Image(),

             'Peacock',                   /* Peacock */
             'bins/peacock.jpg',
             '',
             new Image(),

             'Ladybug',                   /* Ladybug */
             'bins/ladybug.jpg',
             '',
             new Image()
             );

   color[3].src = color[1];


function morecolor ()
   {
   if ( xl >= color.length )
      return (-1);

   color[xl+3].src = color[xl+1];
   xl += 4;
   return( (xl-4)/4 );
   }
