document.observe("dom:loaded", function(){
    if ($('slideshowContainer')) {
    $('slideshowContainer').show();
    jQuery('#slideshowContainer').cycle({ 
        fx:     'fade', 
        speed:  'slow', 
        timeout: 3200, 
        next:   '#randomtextFareNext', 
        prev:   '#randomtextFarePrev' 
    });
    };
});