$(document).ready(function() {

	$('#nav li').hover(function() {
		$(this).addClass('over');
	}, function() {
		$(this).removeClass('over');
	});
	
	$('.cycle').cycle({
		fx:     'fade',
		speed:  500,
		timeout: 5000
	});	
	
	$('.slidePics').cycle({
		fx:     'fade',
		speed:  300,
		timeout: 3000	
	});
	
});

