$(document).ready(
	function(){
		if($('.slideshow').length > 0){	
			$('.slideshow').cycle({
				speed: 700
			});
		}
		$('#nav li').hover(
			function(){
				$(this).children('ul').fadeIn(100);
			}, function(){
				$(this).children('ul').stop(true, true);
				$(this).children('ul').hide();
			}
		);
	}
);
