$(document).ready(function() {
		
    $('.Slideshow').cycle({
		fx: 'scrollHorz', 
		timeout: 8000,  
    	prev:   '#prev', 
    	next:   '#next', 
    	after:   changeText, 

      // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	  

	});
	
	function changeText() {
		//Get alt text from image and put in <p>
		$('.alt').empty();
		$('.alt').append(this.alt);
	  }
});

