// Found the sleep portion of the script at URL below and am still 
// finding out how to give this individual proper credit: 
//
// URL: http://www.ozzu.com/programming-forum/javascript-sleep-function-t66049.html

   zSleep = function (naptime){
      naptime = naptime * 1000;
      var sleeping = true;
      var now = new Date();
      var alarm,alarmMSeconds;
      //var alarmMSeconds;
      var startingMSeconds = now.getTime();
      while(sleeping){
         alarm = new Date();
         alarmMSeconds = alarm.getTime();
         if((alarmMSeconds - startingMSeconds) > naptime) { 
             sleeping=false;
         }
         
      }

      //return;
   }
   
   zLoad= function(itemID,time) {
      zSleep(time);
      Effect.Appear(itemID);
      return;
   }
   