$(document).ready(function(){
	setInterval(function(){
		setTimeout(function(){
			$('#flattr').fadeOut(200,function(){
				$(this).fadeIn(200,function(){
					$(this).fadeOut(200,function(){
						$(this).fadeIn(500);
					});
				});
			});
		},3000);
	},5000);
});
