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

	$test1.crossSlide({
		sleep: 5,
		fade: 1
	}, [
		{ src: 'images_cab/foto1.jpg' },
		{ src: 'images_cab/foto2.jpg'   },
		{ src: 'images_cab/foto3.jpg'  },
		{ src: 'images_cab/foto4.jpg' },
		{ src: 'images_cab/foto5.jpg' }
	]);

	
});

