$(function() {
	var $test1 = $('#test1'),
		$test2 = $('#test2'),
		$test3 = $('#test3'),
		$test4 = $('#test4'),
		$caption = $('div.caption'),
		$pause = $('#pause'),
		$resume = $('#resume'),
		$freeze = $('#freeze'),
		$stop = $('#stop'),
		$restart = $('#restart'),
		STOP = 1, RUN = 2, PAUSE = 3;

 

 

	$test3.crossSlide({
		fade: 1
	}, [
		{
			src:  '../risorse/1.jpg',
			alt:  '',
			from: '70% 70% 1x', // zoom con 1.5 1.7 ecc
			to:   '100% 30% 1x',
			time: 2.5
		}, 
		{
			src:  '../risorse/3.jpg',
			alt:  '',
			from: 'bottom right 1x',
			to:   '60% 60% 1x',
			time: 2.5
		},
		{
			src:  '../risorse/2.jpg',
			alt:  '',
			from: '100% 80% 1x',
			to:   '50% 70% 1x',
			time: 2.5
		} 
		
	], function(idx, img, idxOut, imgOut) {
		if (idxOut == undefined) {
			$caption.text(img.alt).animate({ opacity: .7 })
		} else {
			$caption.animate({ opacity: 0 })
		}
	});
	$caption.show().css({ opacity: 0 })

	 

	 
});
