


	/*
	
	ww_imagecycle
	author: Wido Widlewski <wido@websimplex.de>
	
	find the imagecycle div 
	
	*/


	jQuery(document).ready(function (){
	
		//alert('hallo');
		
		/* display the images to cycle */
		jQuery('.morphingimage_luchs').show();
		
		var timeout_value = 3000;
		var speed_value = 2500;
		
		
		jQuery('.morphingimagebox_luchs').cycle({fx: 'fade', timeout: timeout_value, speed: speed_value});
		
		
		
	});
