﻿$(document).ready(function(){

    $('.slideshow').cycle({ 
        fx:     'scrollDown', 
        timeout: 5000, 
        after:   onAfter 
    });
 
    function onAfter() { 
        $('.slideshow-output').html(this.title);
		$('.slideshow-title').html(this.alt);
    }
 
});