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

$('div.slideshow')
.cycle({ 
    fx:     'fade',  
    speed:  1000, 
    timeout: 3000
    }); 
    
$('div#intro')
.cycle({ 
    fx:     'fade',  
    speed:  3500, 
    timeout: 2000
    }); 
    
}); 


