$(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;

	

	$test4.crossSlide({
		fade: 1,
		variant: true,
		easing: 'easeInOutQuad'
	}, [
		{
			src:  'img/anteliz_home/anteliz_hotel.jpg',
			from: '100% 80% 1x',
			to:   'top right 1.2x',
			time: 6
		}, {
			src:  'img/anteliz_home/santorini_hotel.jpg',
			from: 'top left',
			to:   'bottom left 1.2x',
			time: 6
		}, {
			src:  'img/anteliz_home/anteliz_santorini.jpg',
			from: '100% 80% 1.2x',
			to:   'top left',
			time: 6
		}, {
			src:  'img/anteliz_home/santorini_hotel_view.jpg',
			from: '100% 50%',
			to:   'top left 1.2x',
			time: 6
		}, {
			src:  'img/anteliz_home/volcano_view.jpg',
			from: '100% 80% 1.2x',
			to:   'top left',
			time: 6
		}
	]);
});

