$(function(){
	//$("#slides").dropShadow({left: 0, top: 0, opacity: 0.8, blur: 8});
	$('#nav li').hover(function() {
		$(this).children('ul').show();
	}, function() {
		$(this).children('ul').hide();
	});
	
	$('#slides').cycle({
		fx: 'fade',
		width: 955,
		height: 353
	});
});

