$(document).ready(function() {
	// Slideshow implementation
	$('#slideshow')
	
		.cycle({
			fx:		'fade'
			
		});

	$('#nav ul li').hover(
		function() { $('ul', this).css('display', 'block'); },
		function() { $('ul', this).css('display', 'none'); }
	);

});




