

var oekokreis = {};

// CALL FUNCTIONs ON DOCUMENT READY
$(document).ready(function() {
	
	oekokreis.init();
});


oekokreis.init = function () {
	
	$('.slideshow').cycle({
		fx: 'fade',
		speed: 2000,
		timeout: 7000
	});
};
