
$(document).ready(function() {


	function checkIt() {
		
		var switchSpeed = 5000;
		
		$(".photo a:last").animate({
			'opacity' : 1
		}, switchSpeed).animate({
			'opacity' : 0
		}, 1000, function() {
			$(this).insertBefore(".photo a:first");
		}).animate({
			'opacity' : 1
		}, 100, checkIt);

		$(".beschrijving div:last").show().animate({
			'opacity' : 1
		}, switchSpeed).animate({
			'opacity' : 0
		}, 1000, function() {
			$(this).insertBefore(".beschrijving div:first").hide().animate({
				'opacity' : 1
			}, 100);
		});

	}

	checkIt();
	
	
});
