$(document).ready(function(){	
	$('#bgslide').crossSlide({
	  fade: 1
	}, [
	  {
		src:  'http://eurostore.nl/images/slide_bgs/slide_prwinrichting_1.jpg',
		from: 'top right',
		alt:  'Een goed plan is het halve werk!',
		to:   'bottom left 1x',
		time: 4
	  },
	  {
		src:  'http://eurostore.nl/images/slide_bgs/slide_zorg_2.jpg',
		from: 'top left 1x',
		alt:  'Een betrouwbare partner in de zorg',
		to:   'bottom right 1x',
		time: 4
	  }, {
		src:  'http://eurostore.nl/images/slide_bgs/slide_prwinrichting_3.jpg',
		from: 'top right 1x',
		alt:  'Al 20 jaar een specialist in interieur realisatie',
		to:   'bottom left 1x',
		time: 4
	  }, {
		src:  'http://eurostore.nl/images/slide_bgs/slide_standbouw_1.jpg',
		from: 'top left',
		alt:  'Altijd een hoog opleverniveau!',
		to:   'bottom right 1x',
		time: 4
	  }
	], function(idx, img, idxOut, imgOut) {
	  if (idxOut == undefined)
	  {
		// starting single image phase, put up caption
		$('#slogan h2').fadeIn().text(img.alt)
	  }
	  else
	  {
		// starting cross-fade phase, take out caption
		$('#slogan h2').fadeOut()		
	  }
	});
});



