$(document).ready(function() {
	
	
	$('#slider ul').cycle({
		fx:     'fade', 
		timeout: 5000, 
		next:   '#next', 
		prev:   '#prev' 
	});
	

	$("#nav li").hover(function () {
		$(this).find('ul:first').slideDown('fast');
		//alert("hover");
		},function(){
		$(this).find('ul:first').slideUp('fast');
		//alert("out");
	});
	

});

