$(function() {
			$('#pause').click(function() { $('#slides').cycle('pause'); return false; });
			$('#play').click(function() { $('#slides').cycle('resume'); return false; });
			$('#slideshow').hover(
				function() { $('#controls').fadeIn(); },
				function() { $('#controls').fadeOut(); }
			);
			var action
			action = 'fade';
			$('#slides').toggle();
			$('#slides').cycle({
				fx:      action, //blindX
				speed:   1000,
				timeout: 3000,
				next:   '#next',
				prev:   '#prev'
				
			});
		});
