﻿jQuery(document).ready(function() {
    jQuery('#slideshow').hover(
        function() { jQuery('#controls').fadeIn(); },
        function() { jQuery('#controls').fadeOut(); }
    );
    jQuery('#slides').cycle({
        fx: 'fade',
        speed: 600,
        timeout: 3000,
        next: '#next',
        prev: '#prev'
    });
});
