function featureplay() {
	$('#featureplay').remove();
	$('#client_slideshow .rotatorcontrol').append('<a id="featurepause" href="#a" onclick="javascript:featurepause()">pause</a>');
	$('#client_slideshow .rotator').cycle('resume', true);
}

function featurepause() {
	$('#featurepause').remove();
	$('#client_slideshow .rotatorcontrol').append('<a id="featureplay" href="#a" onclick="javascript:featureplay()">play</a>');
	$('#client_slideshow .rotator').cycle('pause');
}

function pause() {
	$('#client_slideshow .rotator').cycle('pause');
}

function play() {
	$('#client_slideshow .rotator').cycle('resume', true,{speed:1000,timeout:25000});
}

$(document).ready(function() {
	$('.rotator').each(function(){
		$(this).after('<div class="rotatorcontrol"></div>');
		$(this).cycle({fx:'fade',speed:1000,timeout:5000,startingSlide:0,pager:$(this).next()
		});     
	});

// 	$('#client_slideshow .rotatorcontrol').append('<a id="featurepause" href="#a" onclick="javascript:featurepause()">pause</a>');
	$('#slideshow .rotatorcontrol').append('');
	$('#slideshow .rotator').hover(
		function() { $('.slidecaption').fadeIn("slow"); },
		function() { $('.slidecaption').fadeOut("slow"); }
	);
});
