<!-- // BEGIN RANDOM IMAGE JAVASCRIPT
   document.players = new Array();
   document.selected = 0;

   function Player() {
      this.playerid = '';
      this.imageurl = '';
      this.imagealt = '';
      this.firstname = '';
      this.lastname = '';
      this.position = '';
      this.number = '';
   } // Player

   function addPlayer(playerid, imageurl, imagealt, firstname, lastname, position, number) {
      var indx = document.players.length;
      document.players[indx] = new Player();

      document.players[indx].playerid = playerid;
      document.players[indx].imageurl = imageurl;
      document.players[indx].imagealt = imagealt;
      document.players[indx].firstname = firstname;
      document.players[indx].lastname = lastname;
      document.players[indx].position = position;
      document.players[indx].number = number;
   } // addPlayer

   addPlayer('1012','/home_parts0001/item_images/63.jpg', 'Shane Doan', 'Shane', 'Doan', 'RW', '19');
   addPlayer('1012','/home_parts0001/item_images/64.jpg', 'Shane Doan', 'Shane', 'Doan', 'RW', '19');
   addPlayer('1006','/home_parts0001/item_images/881.jpg', 'Brad May', 'Brad', 'May', 'LW', '32');
   addPlayer('1021','/home_parts0001/item_images/882.jpg', 'Ossi Vaananen', 'Ossi', 'Vaananen', 'D', '4');
   addPlayer('1101','/home_parts0001/item_images/901.jpg', 'Landon Wilson', 'Landon', 'Wilson', 'RW', '28');
   addPlayer('','/homepage/item_images/5261.jpg', 'APS Coyotes Power Play Tour', '', '', '', '');
   document.selected = 5;

   //  END RANDOM IMAGE JAVASCRIPT -->
	
