/*******************************************************************************
  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 xw = 4;
var weird = new Array (
                       'Lamprey eel',                   /* Lamprey */
                       'bins/lamprey.jpg',
                       '',
                       new Image(),

                       'Anteater',                  /* Anteater */
                       'bins/anteater01.jpg',
                       '',
                       new Image(),

                       'Millipede',                /* Millipede */
                       'bins/millipede.jpg',
                       '',
                       new Image(),

                       'Puffer Fish',              /* Puffer Fish */
                       'bins/puffer01.jpg',
                       '',
                       new Image(),

                       'Earthworm',                /* Puffer Fish */
                       'bins/earthworm.jpg',
                       '',
                       new Image(),

                       'Lined Sea Horse',          /* Leafy Sea Horse */
                       'bins/seahorse.jpg',
                       '',
                       new Image(),

                       'Assassin Bug',             /* Assain Bug */
                       'bins/assassin.jpg',
                       '',
                       new Image(),

                       'Pangolin',                 /* Pangolin */
                       'bins/pangolin.jpg',
                       '',
                       new Image(),

                       'Anemone',                  /* Anemone */
                       'bins/anemon01.jpg',
                       '',
                       new Image(),
					   
                       'Armadillo',                /* Armadillo */
                       'bins/armadillo03.jpg',
                       '',
                       new Image(),

                       'Sloth',                    /* Sloth */
                       'bins/sloth01.jpg',
                       '',
                       new Image(),

                       'Slug',                     /* Slug */
                       'bins/slug.jpg',
                       '',
                       new Image(),

                       'Duck-billed Platypus',     /* Duck-billed Platypus */
                       'bins/pltypus02.jpg',
                       '',
                       new Image(),

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

                       'Octopus',                /* Octopus */
                       'bins/octopus2.jpg',
                       '',
                       new Image(),

                       'Snail',                  /* Snail */
                       'bins/snail.jpg',
                       '',
                       new Image(),


                       'Kangaroo',                /* Kangaroo */
                       'bins/kang01.jpg',
                       '',
                       new Image()
                       );

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


function moreweird ()
   {
   if (xw >= weird.length)
      return(-1);

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