	jQuery(document).ready(function() {
    jQuery('#slideshow').hover(
        function() { jQuery('#controls').fadeIn(); },
        function() { jQuery('#controls').fadeOut(); }
    );
    jQuery('#slides').cycle({
        fx:     'scrollVert',
        speed:   600,
        random:  0,
        timeout: 9000,
        next:   '#next',
        prev:   '#prev'
    });
});
