jQuery(function() {
	jQuery('.slide img').css({
        opacity: 0
    });
    
    setTimeout(function() {
        jQuery('#slideshow').cycle({
            random: 1,
			pause: true,
            delay:  -7000,
			timeout: 7000,
        });

	    jQuery('.slide img').css({
	        opacity: 0
	    });

    }, 1000);
});
