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

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