$(function() {
    $('#gallery').cycle({
			fx:     'scrollHorz',
			timeout: 3000,
			pager:  '#nav'
    });
		
		$('#actionSlide').click(function() {
			if ($(this).hasClass("actionstart")) {
					$('#gallery').cycle('pause');
					$(this).removeClass("actionstart");
					$(this).addClass("actionstop");
					$(this).html("Play");
			}
			else {
					$('#gallery').cycle('resume');
					$(this).removeClass("actionstop");
					$(this).addClass("actionstart");
					$(this).html("Pause");
			}
		});

});

