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

	$slide.crossSlide({
		fade: 1
	}, [
		{
			src:  'images/index/0.jpg',
			from: '100% 100% 1x',
			to:   '100% 100% 1x',
			time: 0.1
		}, {
			src:  'images/index/b.jpg',
			from: '100% 100% 1x',
			to:   '100% 100% 1x',
			time: 1
		}, {
			src:  'images/index/c.jpg',
			from: '100% 100% 1x',
			to:   '100% 100% 1x',
			time: 0.5
		}, {
			src:  'images/index/d.jpg',
			from: '100% 100% 1x',
			to:   '100% 100% 1x',
			time: 0.5
		}, {
			src:  'images/index/e.jpg',
			from: '100% 100% 1x',
			to:   '100% 100% 1x',
			time: 2.5
		},{
			src:  'images/index/0.jpg',
			from: '100% 100% 1x',
			to:   '100% 100% 1x',
			time: 0.1
		}, {
			src:  'images/index/f.jpg',
			from: '100% 100% 1x',
			to:   '100% 100% 1x',
			time: 2
		},{
			src:  'images/index/0.jpg',
			from: '100% 100% 1x',
			to:   '100% 100% 1x',
			time: 0.1
		}, {
			src:  'images/index/g.jpg',
			from: '100% 100% 1x',
			to:   '100% 100% 1x',
			time: 2
		},{
			src:  'images/index/0.jpg',
			from: '100% 100% 1x',
			to:   '100% 100% 1x',
			time: 0.1
		}, {
			src:  'images/index/h.jpg',
			from: '100% 100% 1x',
			to:   '100% 100% 1x',
			time: 0.5
		}, {
			src:  'images/index/i.jpg',
			from: '100% 100% 1x',
			to:   '100% 100% 1x',
			time: 0.5
		}, {
			src:  'images/index/j.jpg',
			from: '100% 100% 1x',
			to:   '100% 100% 1x',
			time: 1.5
		},{
			src:  'images/index/0.jpg',
			from: '100% 100% 1x',
			to:   '100% 100% 1x',
			time: 0.5
		}, {
			src:  'images/index/k.jpg',
			from: '100% 100% 1x',
			to:   '100% 100% 1x',
			time: 1
		}
	], function(idx, img, idxOut, imgOut) {
		if (idxOut == undefined) {
			$caption.text(img.alt).animate({ opacity: .7 })
		} else {
			$caption.animate({ opacity: 0 })
		}
	});

});

