$(document).ready(function(){
	
	
	 	 $(function () {
				 $.ajax({
					  type: "GET",
					  url: "/home-img/PhotoGallery.xml", // replace with absolute URL of your gallery's xml file
					  dataType: "xml",
					  success: function(xml) {
						  $(xml).find('img').each(function() {
							 var location = '/home-img/'; // replace with absolute path to the directory that holds your images
							 var url = $(this).attr('src');
							 var alt = $(this).attr('alt');
							  $('<a href="'+location+''+url+'"><img src="'+location+''+url+'?Action=thumbnail&amp;Width=150&amp;Height=150&amp;algorithm=proportional" alt="'+alt+'"/></a>').appendTo('#galleria');
							  
						  });
																		
						// Load theme
						//Galleria.loadTheme('/js/src/themes/dots/galleria.dots.js');



						 $('#galleria').galleria({
							 autoplay: 2000,
								image_crop: false, // crop all images to fit
								thumb_crop: true, // crop all thumbnails to fit
								transition: 'fade'
						   });

   

		  
					  }
	  
				  });
	
			  })
	
		
	});
	                  



