// Slideshow
$(function () {
	   $.ajax({
		type: "GET",
		url: "http://www.royaltetouch.com/images/showcase/home/PhotoGallery.xml", // replace with absolute URL of your gallery's xml file
		dataType: "xml",
		success: function(xml) {
			$(xml).find('img').each(function() {
			   var location = 'http://www.royaltetouch.com/images/showcase/home/'; // replace with absolute path to the directory that holds your images
			   var url = $(this).attr('src');
			   var alt = $(this).attr('alt');
				$('<li></li>').html('<a href="'+location+''+url+'"><img src="'+location+''+url+'" alt="'+alt+'"/></a>').appendTo('#slideshow ul');
});
					
  rotatePics(1);
  function rotatePics(currentPhoto) {
  var numberOfPhotos = $('#slideshow ul li').length;
  currentPhoto = currentPhoto % numberOfPhotos;
	
  $('#slideshow ul li').eq(currentPhoto).fadeOut(1000,function() {
		// re-order the z-index
	$('#slideshow ul li').each(function(i) {
	  $(this).css(
		'zIndex', ((numberOfPhotos - i) + currentPhoto) % numberOfPhotos
	  );
	});
	$(this).show();
	setTimeout(function() {rotatePics(++currentPhoto);}, 3600);
  });
}
	
				}

			});
			
});
