$(document).ready(function() {
	 	
	var transitionDelay = 10000;	// The amount of time between transitions from one slide to the next
	var transitionTime = 750;		// The amount of time it takes to slide down the text box and transition between images
	
	$('#slideshow img:eq(0)').addClass('current');
	$('#slideshow img:eq(1)').addClass('next');
	
	$('#slideshow-description h3').html($('#slideshow img.current').attr('title'));
	$('#slideshow-description p').html($('#slideshow img.current').attr('rel'));

	$('#slideshow-description').slideUp(0, function() {	
		$('#slideshow-description').slideDown(transitionTime);
	});
	
	setInterval(slideTransition, transitionDelay);

	function slideTransition() {
		// Slide down the image description
		$('#slideshow-description').slideToggle(transitionTime, function() {
			// Update the image description box
			var imageTitle = $('#slideshow img.next').attr('title');
			var imageDescription = $('#slideshow img.next').attr('rel');
						
			$('#slideshow-description h3').html(imageTitle);
			$('#slideshow-description p').html(imageDescription);
				
			$('#slideshow img.current').fadeOut(transitionTime, function() {
				// Move current image to the back of the list
				$('#slideshow img.current').removeClass('current').appendTo('#slideshow');
				
				// Queue up the next image
				$('#slideshow img.next').removeClass('next').addClass('current');
				$('#slideshow img:eq(1)').addClass('next').show(0);
				
				// Slide the image description box back up
				$('#slideshow-description').slideToggle(transitionTime);
			});
		});
	} 
});
