// JavaScript Document
$(function() {
	
	$('#slideshow1').cycle({
		fx:    'scrollHorz',
		speed:  2000,
		timeout:  12000,
		next:   '#next', 
    	prev:   '#prev',
		pause:  1 
 	});
    
    function onBefore() {
        $('#title').html(this.alt);
    }
});
