GENOSlider = {
	current: null,
	list: null,
	intervalID: null,

	start: function() {
		this.list = $('.textcontainer-inner');
		this.list.hide();
		this.current = this.list.eq(0);
		this.current.show();

		this.intervalID = window.setInterval(function() {
			GENOSlider.next();
		}, 3000);
	},

	next: function() {
		var next = this.current.next();
		if (!next.length) {
			next = this.current.parent().children(':first');
		}
		this.current.fadeOut('medium');
		next.fadeIn('medium');
		//$(this).hide('slide', { direction: "down" }, 1000);

		this.current = next;
	}
}

$(document).ready(function() {
	GENOSlider.start();
});
