$(document).ready(function() {
	//start image rotation
	$('#rotatingImages').cycle({
		fx: 'fade',
		prev:   '#rotatingImagesPrevious' ,
		next:   '#rotatingImagesNext',
	});
	//event listener for 
	$("#rotatingImagesPause").click(function() {
		//pause / resume the slideshow
		$('#rotatingImages').cycle('toggle'); 
	});
});
