
$(document).ready(function() {


	function checkIt() {
		
		var switchSpeed = 5000;
		//var player			= $("#con_photoviewer");
		
		$(".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);
		});

	}

	
	$("#con_photoviewer").find('.photo IMG').each(function() {
		var h = $(this).height();
		var w = $(this).width();
		
		if ( h > w ) {
			$(this).css({
				'height' : '100%'
			});
		} 

		if ( h < w ) {
			$(this).css({
				//'width' : '100%'  // WEER AANZETTEN ALS ER ECHTE FOTO's ZIJN
			});
		} 

	});
	

	checkIt();
	
	
	
});

