
$(function(){
  
  // overwtrite part
  aTime = 400;  // fade in/out time
  aPause= 1000; // pause between images
  aStopI= 0;    // index of image BEFORE the animation stops
  aStop = 60000; // length of the stop

  // images
  topLoaded = false;
  topIndex  = 0;
  topImages = Array(
                    'index/index_intro1.jpg',
                    'index/index_intro2.jpg',
                    'index/index_intro3.jpg'
  );

  // show first image
  $('.topPics').children().first().fadeIn(aTime,function() {
    aLoad();
  });
 
});


