/*******************************************************************************
  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 xf = 4;
var faces = new Array (
                      'Cat Eyes',                  /* Cat Eyes */
                       'bins/CatEyes.jpg',
                       '',
                       new Image(),

                      'Cape Buffalo',              /* Cape Buffalo */
                       'bins/capebuff.jpg',
                       '',
                       new Image(),

                      'Komodo Dragon',             /* Komodo Dragon */
                       'bins/Komodo_Dragon.jpg',
                       '',
                       new Image(),

                       'Tiger',			    /* Tiger */
                       'bins/tiger13.jpg',
                       'bins/tiger.au',
                       new Image(),

                       'Owl',                       /* Owl */
                       'bins/owl15.jpg',
                       'bins/owl.au',
                       new Image(),

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

                       'Ant',                       /* Ant */
                       'bins/ant02.jpg',
                       'bins/ant.wav',
                       new Image(),

                       'Red Panda',                 /* Panda */
                       'bins/panda09.jpg',
                       '',
                       new Image(),

                       'Parrot',                    /* Parrot */
                       'bins/parrot02.jpg',
                       '',
                       new Image(),

                       'Spider',                    /* Spider */
                       'bins/spider01.jpg',
                       '',
                       new Image(),

                       'Aligator',                  /* Gator */					  
                       'bins/gator.jpg',
                       '',
                       new Image(),
					   
                       'Pelican',                  /* Pelican */					
                       'bins/pelican.jpg',
                       '',
                       new Image(),

                       'Wolf',                      /* Wolf */					    
                       'bins/wolf03.jpg',
                       'bins/wolf.wav',
                       new Image(),

                       'Hippo',              	    /* Hippo */
                       'bins/hippo03.gif',
                       '',
                       new Image(),
 
                       'Black Heron',               /* Black Heron */
                       'bins/blackheron.jpg',
                       '',
                       new Image(),

                       'Whale',                     /* Whale */					   					   
                       'bins/whale04.jpg',
                       'bins/whale1.au',
                       new Image(),

                       'Armadillo',                 /* Armadillo */
                       'bins/arm01.jpg',
                       '',
                       new Image(),

                       'Vulture',                   /* Vulture */
                       'bins/vulture.jpg',
                       '',
                       new Image(),

                       'Brown Bat',                 /* Brown Bat */
                       'bins/brownbat.jpg',
                       '',
                       new Image(),

                       'Fruit Bat',                 /* Fruit Bat */
                       'bins/fruitbat.jpg',
                       '',
                       new Image(),

                       'Opossum',                   /* Opossum */
                       'bins/opossum.jpg',
                       '',
                       new Image(),

                       'Dung Beetle',               /* Dung Beetle */
                       '../images/dungbeet.jpg',
                       '',
                       new Image(),

                       'Ostrich',                   /* Ostrich */
                       'bins/ostrich.jpg',
                       '',
                       new Image(),

                       'Crab',                      /* Crab */
                       'bins/crab.jpg',
                       '',
                       new Image(),

                       'Snapping Turtle',           /* Snapping Turtle */
                       'bins/snap.jpg',
                       '',
                       new Image()
                       );

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


function moreface ()
   {
   if ( xf >= faces.length )
      return(-1);

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