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:     'wipe', 
		speed:   500, 
		timeout: 5000, 
		next:   '#next', 
		prev:   '#prev', 
   clip:   'r2l' 
	});

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



