jQuery(document).ready(function() {

	/**
	let op: de timeout lijkt niet in alle browsers hetzelfde uit te pakken!
	in het bijzonder: ie is trager dan ff.
	eventueel voor ie andere instellingen gebruiken:
	if (jQuery.browser.msie){ .. }
	*/
	jQuery('.cycle_block').cycle({
	    fx:    		'scrollDown',
	    timeout:	8000,						// milliseconds between slide transitions (0 to disable auto advance)
	    speed:		1500,  						// speed of the transition (any valid fx speed value)
	    pause:			1, 						// pause on hoover		    
	    random:			1,						// true for random, false for sequence (not applicable to shuffle fx)
	    sync:           1,						// true if in/out transitions should occur simultaneously
	    pager:          '.cycle_block_pager'	// selector for element to use as pager container  
	    //delay:		-2000,     					// additional delay (in ms) for first transition (hint: can be negative) qqqpbo causes a problem in ie6, winsaf etc!
	     
	 });		 
	
	jQuery('.cycle_block img').show();
	
});