  	$(document).ready(function(){
			$.ajax({
				type: "GET",
				url: "images/home-slide/slideshow.xml",
				dataType: "xml",
				complete: function(){
				
					$('ul#slideshow-home').innerfade({
						speed: 1000,
						timeout: 4000,
						type: 'sequence',
						containerheight: '586px'
					});},
					
				success: function(xml) {
					$(xml).find('site').each(function(){
						var title = $(this).find('title').text();
						var imageURL = $(this).find('imageURL').text();
						$('<li></li>').html('<img src="'+imageURL+'" alt="'+title+'" width="945px" height="572px">').appendTo('#slideshow-home');
					});
				}
			});
		});
