// JavaScript Document
$(document).ready(function() {


$('#slideshows').cycle({ 
    fx:     'scrollHorz',
	speed:    500, 
    timeout:  3500, 
    prev:   '#previous', 
    next:   '#next', 
	pause:  1
   	
});


$('#animate').cycle({ 
		fx:  'scrollHorz', 
    	timeout: 3500,
		speed:    500,	
		})
				  	 
$('#slideshowintro').delay(3500).cycle({ 
    	fx:     'scrollHorz', 
    	timeout: 3500,
		speed:    500, 
		}).hide().delay(3700).show(500);



});
