$(document).ready(function() {

$('#slidesContainer').cycle({
	fx: 'fade',
	timeout: 7000,
	speed: 800,
	delay: 3000,
	pager: '#pager',
	next: '#rightControl',
	prev: '#leftControl'
});

$('#playControl').toggle(
		function() {
			$('#slidesContainer').cycle('pause');
			$(this).text('Play');
		},
		function() {
			$('#slidesContainer').cycle('resume');
			$(this).text('Pause');
		});

}); // end ready()
