/*	 //thist wil start direct
	$('#slide > ul').cycle({ 
		fx:     'fade', 
		speed:  1400, 
		prev:   '#prev1',
		next:   '#next1', 
		timeout: 1, 
		pager:  '#nav', 
		pagerAnchorBuilder: function(idx, slide) { 
			// return selector string for existing anchor 
			return '#nav li:eq(' + idx + ') a'; 
		} 
	});
*/
	
	
	//thist wil not start direct
	$('#slide').cycle({ 
		fx:     'fade', 
		speed:  1400, 
		prev:   '.prev1',
		next:   '.next1', 
		timeout: 1, 
		pager:  '#nav', 
		pagerAnchorBuilder: function(idx, slide) { 
			// return selector string for existing anchor 
			return '#nav table:eq(' + idx + ') a'; 
		} 
	}).cycle("pause").hover(function() {
		$(this).cycle('pause'); // dit voorkomt autostart
	});	
	
		//$('#slide > ul').cycle('pause'); 

	function stopthisslideshow()
	{
		$('#slide').cycle('pause'); 
		$('#stopbutton').hide();	
		$('#startbutton').show();
	}
	
	function startthisslideshow()
	{
		$('#slide').cycle('resume', true);
		$('#startbutton').hide();	
		$('#stopbutton').show();
	}	
	

