// JavaScript Document
var numTestimonials = 6;
var currTestimonial = 1;
$(function() {
	$('a#prevBtn').hide();
	$('a#nextBtn').toggleClass("singleBtn");
	$('div#testimonialBtns  a').click(function () {
		switch($(this).attr("id"))
		{
			case "nextBtn":
				if (currTestimonial < numTestimonials)
				{
					currTestimonial++;
					$('div#testimonialCopy').hide();
					$('div#testimonialCopy').load("Experience/experience-testimonial"+currTestimonial+".asp #testimonialCopy",{}, function() {
						$('div#testimonialCopy').fadeIn(750);
					});
					$('a#nextBtn').removeClass("singleBtn");
					$('a#prevBtn').show();
					if(currTestimonial == numTestimonials)
					{
						$(this).hide();
						$('a#prevBtn').toggleClass("singleBtn");
					}
				}
				break;
			case "prevBtn":
				if (currTestimonial > 1)
				{
					currTestimonial--;
					$('div#testimonialCopy').hide();
					$('div#testimonialCopy').load("Experience/experience-testimonial"+currTestimonial+".asp #testimonialCopy",{}, function() {
						$('div#testimonialCopy').fadeIn(750);
					});
					$('a#prevBtn').removeClass("singleBtn");
					$('a#nextBtn').show();
					if(currTestimonial == 1)
					{
						$(this).hide();
						$('a#nextBtn').toggleClass("singleBtn");
					}

				}
				break;
		}
		return false;
	});
	});