// jquery setup

$(function() {
	$('#slideshow').cycle({
		timeout: 3000 
	});		
});

$(document).ready(function () {
	$('#menu .item').hover(
		function () {
			$('.sub', this).fadeIn("fast");
		}, 
		function () {
			$('.sub', this).fadeOut("fast");			
		}
	);
});
