function doFadeIn() {
	$('span.mentalmesse').animate({
		backgroundColor: '#4ba9ed'
	}, 3000, doFadeOut);
}

function doFadeOut() {
	$('span.mentalmesse').animate({
		backgroundColor: '#62bbfe'
	}, 3000, doFadeIn);
}

$(document).ready(function(){
	doFadeIn();
});

