$(document).ready(function(){
	
	$('#nav .hasChildren').hoverIntent(function () {
			$(this).children('ul').slideDown(100);
		},
		function () {
			$(this).children('ul').slideUp('fast'); 
		}
	);
	
	
	$('#slideshow').cycle({
		fx: 'fade',
		speed: 2500,
		timeout: 5000
	});
	
});

