﻿$(document).ready(function() {
    $("ul#slides").cycle({
        fx: 'fade',
        speed: 1000,
        timeout: 5000,
        pause: 1,
        random: 1,
        prev: '#prev',
        next: '#next'
    });

    $("#slideshow").hover(function() {
        $("ul#nav").fadeIn();
    },
		function() {
		    $("ul#nav").fadeOut();
		});
});
