  $(function() {
  $('#banner').crossSlide({
  fade: 1
}, [
  {
    src:  'images/image01.jpg',
    alt:  'Sand Castle',
    from: '70% 20% 1.8x',
    to:   '30% 40% 1.2x',
    time: 3
  }, {
    src:  'images/image02.jpg',
    alt:  'Sunflower',
    from: '50% 30%',
    to:   '30% 30% 1.5x',
    time: 2
  }, {
    src:  'images/image03.jpg',
    alt:  'Flip Flops',
    from: '50% 30%',
    to:   '30% 50% 1.5x',
    time: 2
  }, {
    src:  'images/image04.jpg',
    alt:  'Rubber Ring',
    from: '100% 40%',
    to:   '30% 40% 1.5x',
    time: 2
  }
], function(idx, img, idxOut, imgOut) {
  if (idxOut == undefined)
  {
    // starting single image phase, put up caption
    $('div.caption').text(img.alt).animate({ opacity: .7 })
  }
  else
  {
    // starting cross-fade phase, take out caption
    $('div.caption').fadeOut()
  }
});
  });
