$(window).load(function() {
  $('#ken_burns').crossSlide({
  fade: 1
}, [
  {
    src:  'templates/i24-css-berk/img/header_ken_burns/Amethyst.jpg',
    alt:  'Sand Castle',
    from: '50% 50% 1x',
    to:   '0% 80% 1x',
    time: 6
  }, {
    src:  'templates/i24-css-berk/img/header_ken_burns/Himalaya.jpg',
    alt:  'Sand Castle',
    from: '100% 100% 1x',
    to:   '100% 0% 1x',
    time: 6
  }, {
    src:  'templates/i24-css-berk/img/header_ken_burns/Pyramiden.jpg',
    alt:  'Sunflower',
    from: '60% 0% 1x',
    to:   '80% 0% 1x',
    time: 6
  }, {
    src:  'templates/i24-css-berk/img/header_ken_burns/Stonehenge.jpg',
    alt:  'Flip Flops',
    from: '0% 0% 1x',
    to:   '50% 50% 1x',
    time: 6
  }, {
    src:  'templates/i24-css-berk/img/header_ken_burns/Wasserfall.jpg',
    alt:  'Rubber Ring',
    from: '80% 100% 1x',
    to:   '100% 0% 1x',
    time: 6
  }
], 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()
  }
});
});
