/*
jQuery(document).ready(function() {
    jQuery('div#slideshow').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
});
*/

jQuery(function() {
	jQuery('#slideshow p:first').fadeIn(1500, function() {
        jQuery('#slideshow').cycle({
        	fx: 'fade',
        	speed: 1500,
        	timeout: 4500
        });
    });
});
