jQuery(document).ready(function($){

	var first = $('.index-media .image:first');
	
	function rounandround(thiselem) {
		$(thiselem).css('z-index', '2');
		$(thiselem).next().css('z-index', '1');
		$(thiselem).next().show();
		if( $(thiselem).next().html() == $('.index-media .image:last').html() ) {
			$('.index-media .image:first').css('z-index', '1');
			$('.index-media .image:first').show();
		}
		
		$(thiselem).delay(6000).fadeOut(1000, function() {
			if( $(thiselem).html() != $('.index-media .image:last').html() ) {
				rounandround($(thiselem).next());
			} else {
				rounandround($('.index-media .image:first'));
			}			
		});
	}
	
	$(first).show();
	rounandround($(first));
	
});
