/*******************************************************************************
  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 xb = 4;
var babies = new Array (
                       'Puppy.',                     /* Puppy */
                       'bins/puppy.jpg',
                       '',
                       new Image(),

                       'Faun.',                     /* Faun */
                       'bins/faun2.jpg',
                       '',
                       new Image(),

                       'Not sure. Maybe Robins',    /* Baby Bird */
                       'bins/babybird.jpg',
                       '',
                       new Image(),

                       'Elephant',                  /* Elephant */
                       'bins/eleph02.jpg',
                       'bins/elephant.au',
                       new Image(),

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

                       'Lion',                      /* Lioness & kitten */
                       'bins/young06.jpg',
                       '',
                       new Image(),

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

                       'Seal',                      /* Seal */
                       'bins/seal.jpg',
                       '',
                       new Image(),

                       'Giraffe',                   /* Giraffe */
                       'bins/giraffe1.jpg',
                       '',
                       new Image(),

                       'Flamingo',                  /* Flamingo */
                       'bins/flmngo03.jpg',
                       '',
                       new Image(),

                       'Gerenuk',                   /* Gerenuk */
                       'bins/gerenuk.jpg',
                       '',
                       new Image(),

                       'Black Widow',               /* Black Widow */
                       'bins/BlackWidow.jpg',
                       '',
                       new Image(),

                       'Polar Bear',                /* Polar Bear */
                       'bins/polar07.jpg',
                       '',
                       new Image(),

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

                       'Praire Dog',               /* Praire Dog */
                       'bins/BPD.jpg',
                       '',
                       new Image(),

                       'Duck',                      /* Duck */
                       'bins/duck12.jpg',
                       'bins/duck.au',
                       new Image(),

                       'Cat',                       /* Cat Kitten */
                       'bins/catkitten.jpg',
                       '',
                       new Image(),

                       'Faun',                      /* Faun */
                       'bins/faun.jpg',
                       '',
                       new Image(),

                       'Gorilla',                   /* Faun */
                       'bins/GorillaBaby.jpg',
                       '',
                       new Image()
                       );

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


function morebabies ()
   {
   if ( xb >= babies.length )
      return (-1);

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