
	 $(document).ready(function() {
		$('#slideControls').hide();
		
	 	$('#calloutRotation').cycle({ 
		    fx:    'fade', 
		    pause:  1,
		    prev:    '#prev',
	        next:    '#next',
	        timeout: 5000
		});
	 	
	 	$('li#slideToggle a').toggle(function(){
	 		$(this).attr('title','Resume Slide Show');
	 		$(this).css('background','url(/floodsmart/images/homepage/slide_buttons.png) no-repeat -86px 0');
	 		$('#calloutRotation').cycle('pause');
	 	}, function () {
	 		$(this).attr('title','Pause Slide Show');
	 		$(this).css('background','url(/floodsmart/images/homepage/slide_buttons.png) no-repeat -130px 0');
	 		$('#calloutRotation').cycle('resume');
	 		return false;
	 	});
	 	
	 	$('#calloutRotation').mouseenter(function() {
	 		$('#slideControls').show();
	 	}).mouseleave(function() {
	 		$('#slideControls').hide();
	 	});
	 	
	 	$('#slideControls').mouseenter(function() {
	 		$(this).css('display','block');
	 	}).mouseleave(function() {
	 		$(this).css('display','none');
	 	});
	 });