$(document).ready(function(){

$(function() {
    $('#slideshow2').cycle({
        fx:     'scrollRight', 
		prev:   '#prev',
        timeout: 0
    });
    $('#slideshow2').cycle({
        fx:     'scrollLeft', 
        next:   '#next',
        timeout: 0
    });    
    function onBefore() {
        $('#title').html(this.alt);
    }
});
		   
});