/* Roteer het menu */
$(function() {
	$('#rotate > ul').tabs({ fx: { opacity: 'toggle' } }).tabs('rotate', 4000);
});

/* Roteer de illustraties */

$.fn.cycle.defaults.timeout = 4000;

$(function() {
// Cycle JQuery

	$('#illustraties').cycle({ 
		fx:     'fade',
		timeout: 4000,
		speed: 1,
		cleartype: 1,
		startingSlide: 0
	});

	/* Knoppen van de peilers */
	$('ul#peiler_lijst li a.paars').click(function() {
		$('#illustraties').cycle({startingSlide: 0});
		$('#illustraties').cycle('pause'); 
	});
	
	$('ul#peiler_lijst li a.blauw').click(function() {
		$('#illustraties').cycle({startingSlide: 1});
		$('#illustraties').cycle('pause'); 
	});
	
	$('ul#peiler_lijst li a.groen').click(function() {
		$('#illustraties').cycle({startingSlide: 2});
		$('#illustraties').cycle('pause'); 
	});
	
	$('ul#peiler_lijst li a.oranje').click(function() {
		$('#illustraties').cycle({startingSlide: 3});
		$('#illustraties').cycle('pause'); 
	});
	
	$('ul#peiler_lijst li a.rood').click(function() {
		$('#illustraties').cycle({startingSlide: 4});
		$('#illustraties').cycle('pause'); 
	});
});	
