/*******************************************************************************
  This array contains pictures for the menu screen. Every slide has 2 entries:
  (1)the image file URL, and (2)the image object. The code at the end starts the
  pictures loading.
*******************************************************************************/
var menu = new Array (
                       'bins/owlTN.jpg',
                       new Image(),

                       'bins/toucan02.jpg',
                       new Image(),

                       'bins/polarTN.jpg',
                       new Image(),

                       'bins/pufferTN.jpg',
                       new Image(),

                       '../images/MarbleOrange.jpg',
                       new Image()
                       );

	for (i = 0; i < menu.length; i += 2)
           {
           menu[i+1].src = menu[i];
           }
