		var cache = [];	
	
		var photos = new Array();
		photos[photos.length] = new Array('/images/photo1.jpg','Photo Credit: Daniela Federici');
		photos[photos.length] = new Array('/images/photo2.jpg','Live performance photo &copy; G&eacute;rard SCHACHMES');
		photos[photos.length] = new Array('/images/photo3.jpg','Photo Credit : Daniela Federici');
		photos[photos.length] = new Array('/images/photo4.jpg','Photo Credit : Daniela Federici');

		function nextSlide() {
			$('.slide').fadeOut('slow',function() {
				current_photo = $('img',this).attr('src');
				current_photo = current_photo.replace('/images/photo','');
				current_photo = current_photo.replace('.jpg','');
				current_photo = current_photo - 1;
				next_photo = current_photo +1;
				if (next_photo >= photos.length) next_photo = 0;
				$('img',this).attr({ src: photos[next_photo][0] });
				$('.photo_caption',this).html( photos[next_photo][1] );
				$(this).fadeIn('slow');
				setTimeout('nextSlide()',4000);
			});
		}
				
		$(document).ready(function() {
			for (var i = photos.length; i--;) {
			  var cacheImage = document.createElement('img');
			  cacheImage.src = photos[i][0];
			  cache.push(cacheImage);
			}
			
			setTimeout('nextSlide()',8000);
		});
