

//Featured Slideshow

$(document).ready(function()
	{
		$('#slides').cycle({ 
		   fx:    'fade',
		   random: 1,
		   timeout:  13000, 
		   speed:  4000,
		   requeueOnImageNotLoaded: true,
		   pause:  1 
		 });
	});

// Startseiten JS

	$(function() {  
		$("#iwmnews").jCarouselLite({ 
		        btnNext: ".next",
		        btnPrev: ".prev",
		        pause: 1,
		        visible: 1,    
		        speed:1500  
		    }); 
		    
		$("#themesBox").jCarouselLite({ 
		        btnNext: ".themesNext",
		        btnPrev: ".themesPrev",
		        pause: 1,
		        visible: 1,
		        vertical: true,     
		        speed:1500  
		    });  
		
		$("#projectsBox").jCarouselLite({ 
		        btnNext: ".projectsNext",
		        btnPrev: ".projectsPrev",
		        pause: 1,
		        visible: 1,
		        vertical: true,     
		        speed:1500  
		    });      
		    
		$("#eventcont").jCarouselLite({ 
		        btnNext: ".eventNext",
		        btnPrev: ".eventPrev",
		        pause: 1,
		        visible: 2,
		        vertical: true,   
		      //  circular: false,
		        speed:1500  
		    });  
		});
