function onBefore() { 
    $('#output').html("Scrolling image:<br>" + this.src); 
} 
function onAfter() { 
    $('#output').html("Scroll complete for:<br>" + this.src) 
        .append('<h3>' + this.alt + '</h3>'); 
}
$(document).ready(function() {
    $('.slideshow').cycle({
    fx:     'scrollDown',
	speed: 600,
    random:1,
	pause:1,
	timeout: 7000
	});
});
/*$('#s5').cycle({ 
    fx:     'scrollLeft', 
    timeout: 5000, 
    before:  onBefore, 
    after:   onAfter 
 });*/


