$(document).ready(function(){
	$('#pictures').cycle({
		speed: 500,
		timeOut: 0
	});
	
	$('#hoogtepunten li:nth-child(odd)').css('background', '#D4D0B3');
	
	$('#hoogtepunten li').hover(function(){
		$(this).css('overflow', 'visible');
	}, function(){
		$(this).css('overflow', 'hidden');
	})
	
	$('#hoogtepunten li:nth-child(odd)').hover(function() {
		$(this).css('background', '#c6be9a');
	}, function() {
		$(this).css('background', '#D4D0B3');
	});
	
});
