jQuery(document).ready(function($){

	$( '#quotes' ) . cycle( {
		fx:      'fade', //The name of the transition effect
		speed:   1000,   //How long the transition takes; 1000 = 1sec
		timeout: 15000, //How long to display each "slide"
		random: 1
	} );

});

jQuery( document ) . ready( function( $ ) {
			$( '#nav b' ) . click( function() {
				$( this ) . parents( 'li' ) . children( 'ul' ) . slideDown();
			} );
			
			$( '#nav li' ) . hover(
               function() { $( this ) . children( 'ul' ) . slideDown(); },
               function() { $( this ) . children( 'ul' ) . slideUp(); }
       );
			
		} );



$( document ) . ready( function() {
	$( '#slideshow' ) . cycle( { pause: 1, timeout: 6000, after: showOverlay } );
	
	function showOverlay() {
		$( this ) . children( '.overlay' ) . slideDown( 500, function() { setTimeout( function() { $( '#slideshow .overlay' ) . slideUp(); }, 5000 ); } );
	}
} );

