$(document).ready(function() {



$('#headeranimation').crossSlide({
  fade: 1
}, [
  {
    src:  './img/header/header1.jpg',
    alt:  'Sand Castle',
    from: '100% 80% 1x',
    to:   '100% 70% 1x',
    time: 4
  }, {
    src:  './img/header/header2.jpg',
    alt:  'Sunflower',
    from: 'top left',
    to:   'bottom right 1x',
    time: 4
  }, {
    src:  './img/header/header3.jpg',
    alt:  'Flip Flops',
    from: '90% 80% 1x',
    to:   '100% 70% 1x',
    time: 4
  }, {
    src:  './img/header/header4.jpg',
    alt:  'Rubber Ring',
    from: '100% 50%',
    to:   '90% 90% 1x',
    time: 4
  }
], 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()
  }
});


});
