$(document).ready(function() {




		
		
		/*
		--------------------------------------------------------------
		Setup TMA Systems Slideshow
		--------------------------------------------------------------
		*/
		
		// Create lists
		var home_list = $("#home_slide").children("#home_img");
		var num_home_images = $("#home_slide").children("#home_img").size();	
		var curr_home_image = 0;
	
		// Hide all of the answers
		$("#home_slide").children("#home_img").hide();
		
		// Show the first answer
		$(home_list[0]).show();
		
		// Start the loop
		startGalleryLoop();

		
		/*
		--------------------------------------------------------------
		Setup Speed and Transition
		--------------------------------------------------------------
		*/
		
		function startGalleryLoop() {
			
			$(this).everyTime(6500, "gallery_loop", function() {
															 
					
				// Create a variable to save the new position
				var newPos = curr_home_image + 1;
				
				// Check the new number and set back to zero
				// if it's greater than the number of images
				if (newPos == num_home_images) newPos = 0;
	
				// Swap out the projects			
				swapProjects(newPos);
			});
		}
		
		
		
		// Function used to swap projects
		function swapProjects(pos) {
			
			// Fade out the current image
			$(home_list[curr_home_image]).fadeOut("slow");
			
			// Fade in the new image
			$(home_list[pos]).fadeIn("slow");
			
			// Save the new position
			curr_home_image = pos;
		}
		
	});
