$(function(){		// Slides through the content		var currentSlide = 1;		$('.buttons img').click(function() {			switch ($(this).attr('alt')) {				case "Previous":					(currentSlide > 1) ? currentSlide-- : currentSlide = 1;					break;				case "Next":					(currentSlide < maxSlides) ? currentSlide++ : currentSlide = maxSlides;					break;			}					if (currentSlide < maxSlides) $('#Right img').css('display', 'block'); else $('#Right img').css('display', 'none');			if (currentSlide > 1) $('#Left img').css('display', 'block'); else $('#Left img').css('display', 'none');			var slideName = "C" + currentSlide;			$('#Content img').each(function(n) {				if ($(this).attr('id') == slideName) $(this).fadeIn('500'); else $(this).css('display', 'none');			});		}).css('cursor','pointer');			});
