/* Author: 

*/

/* ------Rotator----- */

$(document).ready(function() {
    $('div#rotator').cycle({
		fx: 'fade', //  *  blindX blindY blindZ cover curtainX curtainY fade fadeZoom growX growY none scrollUp scrollDown scrollLeft scrollRight scrollHorz scrollVert shuffle slideX slideY toss turnUp turnDown turnLeft turnRight uncover wipe zoom *
		speed: 1000,
		timeout: 8000,
		pager: '#slidenav'
	
	});
	
	// this stops the slideshow once a manual selection is made.
	
	$('#slidenav a').click(function() { 
    $('.rotator').cycle('pause'); 
});
	
	
	
	
});





















