$(function() {
	
							$('#slider').crossSlide({
								fade: 4,
								
 								doubleFade: true
							}, [
									 {
    src:  'img/anim-beruehren.png',
    alt:  'Monika Morgenstern',
    from: 'top right',
    to:   'bottom left 1.5x',
    time: 5
  }, {
    src:  'img/anim-bewegen.png',
    alt:  'Monika Morgenstern',
    from: 'top left',
    to:   'bottom right 1.5x',
    time: 5
  }, {
    src:  'img/anim-begleiten.png',
    alt:  'Monika Morgenstern',
    from: '100% 80% 1.5x',
    to:   '80% 0% 1.1x',
    time: 5
  }, 
], 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()
  }
							});
			   });
