/*Fragenpool*/
$(document).ready(function() {
	currentID = 0;
	$('#questions div:eq(' + currentID + ')').fadeIn(1000);
	setInterval(function() {
		$('#questions div').fadeOut(1000);
		setTimeout(function() {
			$('#questions div:eq(' + currentID + ')').fadeIn(1000);			
		}, 1000)
		if(currentID+1 == $('#questions div').length) {
			currentID = 0;
		} else {
			currentID++;
		}					
	}, 5000)
});