$(document).ready(function() {
	//Hide all but first image
	$('div#image-left img:not(":first")').hide();
	
	(function imageTransitionLeft(){
		setTimeout(function(){
			//Fade all images out
			$('div#image-left img:visible').fadeOut();
			
			//Fade in images
			if($('div#image-left img:visible').next('img').size() < 1)
			{
				$('div#image-left img:first').fadeIn(1500);
			}
			else
			{
				$('div#image-left img:visible').next('img').fadeIn(1500);
			}
			imageTransitionLeft();
		}, 5000);
	})();
	
	//Hide all but first image
	$('div#image-right img:not(":first")').hide();
	
	(function imageTransitionRight(){
		setTimeout(function(){
			//Fade all images out
			$('div#image-right img:visible').fadeOut();
			
			//Fade in images
			if($('div#image-right img:visible').next('img').size() < 1)
			{
				$('div#image-right img:first').fadeIn(1500);
			}
			else
			{
				$('div#image-right img:visible').next('img').fadeIn(1500);
			}
			imageTransitionRight();
		}, 5000);
	})();
});
