  $(function() {
	$('#slideshow').crossSlide({
	  fade: 1
	}, [
	  {
	    src:  'accessibile/img/header1.jpg',
	    from: '100% 50%',
	    to:   '30% 50% 1.5x',
	    time: 1
	  }, {
	    src:  'accessibile/img/header2.jpg',
	    from: '100% 50%',
	    to:   '30% 50% 1.5x',
	    time: 1
	  }, {
	    src:  'accessibile/img/header3.jpg',
	    from: '100% 50%',
	    to:   '30% 50% 1.5x',
	    time: 1
	  }, {
	    src:  'accessibile/img/header4.jpg',
	    from: '100% 50%',
	    to:   '30% 50% 1.5x',
	    time: 1
	  }, {
	    src:  'accessibile/img/header5.jpg',
	    from: '100% 50%',
	    to:   '30% 50% 1.5x',
	    time: 1
	  }
	], 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()
	  }
	});
  });
