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

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

$(document).ready(function() {
	$('#slideshow').cycle({ 
		fx:     'fade', 
		speed:   1000, 
		timeout: 5000, 
		next:   '#next', 
		prev:   '#prev' 
	});

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




