(function($){

$(document).ready(function(){
	var $imagesSlideshow = $('.images-slideshow>img');
	$imagesSlideshow.filter(':first').show();
	
	setInterval(function(){
		var $curImage = $imagesSlideshow.filter(':not(:hidden)');
		var $nextImage = $curImage.next('img');
		if (0 == $nextImage.length) {
			$nextImage = $imagesSlideshow.eq(0);
		}
		
		$nextImage.fadeIn(2500);
		$curImage.fadeOut(2500);
	}, 10000);
});

})(jQuery);
