$(function(){
			// Set starting slide to 1
			var startSlide = 1;
			// Initialize Slides
			$('#slides').slides({
				preload: false,
				preloadImage: 'img/loading.gif',
				generatePagination: true,
				generateNextPrev: false,
				play: 5000,
				pause: 6500,
				hoverPause: true,
				// Get the starting slide
				start: startSlide,
				animationComplete: function(current){
				}
			});
		});
