$(function() {
	setInterval(function(){
		if($(".nieuws-foto.actief").next(".nieuws-foto").length > 0){
			$(".nieuws-foto.actief").css("position","absolute").fadeOut().removeClass("actief").next().fadeIn().addClass("actief")
		}
		else {
			$(".nieuws-foto.actief").fadeOut().removeClass("actief");
			$(".nieuws-foto:first").fadeIn().addClass("actief");
		}
	},4000); 
});