$(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;

	$test1.crossSlide({
		sleep: 10,
		fade: 1
	}, [
	  { src: 'http://www.gourmetpantryonline.com/secure/images/slide_1.png' },
	  { src: 'http://www.gourmetpantryonline.com/secure/images/slide_2.png'   },
	  { src: 'http://www.gourmetpantryonline.com/secure/images/slide_3.png' }
	]);


	$caption.show().css({ opacity: 0 })

	function state(state) {
		$pause.attr('disabled', state != RUN);
		$resume.attr('disabled', state != PAUSE);
		$freeze.attr('disabled', state == STOP);
		$stop.attr('disabled', state == STOP);
	}
	state(RUN);



});

