var testimonials = new Array();

  testimonials[0] = "It's no surprise that Shawn gets rave reviews. He's a wonderful speaker with a powerful message and has an exceptional ability to truly connect with the audience. <br /><br />I highly recommend him - he's a real star!";
  testimonials[1] = "Shawn is passionate about everything he does, it's who he is. His words of inspiration and action have been a gift to me.";
  testimonials[2] = "Shawn is an inspirational speaker who offers empowering wisdom. He weaves his personal choices and challenges with inspirational messages viewers can use in their own lives.";
  testimonials[3] = "Shawn Shepheard is a dynamic and empathetic speaker who has an uncanny ability to encourage active learning in the people fortunate enough to attend his presentations.";
  testimonials[4] = "Shawn delivered our keynote presentation for the Intensive Care for Nurses & Healthcare Professionals Wellness Retreat. He went above and beyond our expectations and connected with our participants on a really meaningful level.";
  testimonials[5] = "He's cited. He's quoted. He's one of most respected speakers in Canada, admired from coast to coast.<br /><br />His life and his message are both evidence and example that no matter what we can fulfill our destiny.";
  testimonials[6] = "Shawn Shepheard has directed individuals and companies for the past 10 years. I know he is one of the best in Canada. It has always been a motivating experience and a pleasure for my clients to work with Shawn.";


  var authors = new Array();
  
  authors[0] = "<span>Cathleen Fillmore </span><br />President, Speakers Gold Bureau <br />www.speakersgold.com";
  authors[1] = "<span>Jim Thomson </span><br />Former NHL Player and Television Personality";
  authors[2] = "<span>Helen Whelan </span><br />Founder and CEO of Success Television<br />www.successtelevision.com";
  authors[3] = "<span>Janis Foord Kirk </span><br />International Syndicated Columnist <br />Author of Survivability";
  authors[4] = "<span>Stephanie Staples </span><br />President \"Your Life Unlimited\" <br />www.yourlifeunlimited.ca";
  authors[5] = "<span>Lissa Bergin-Boles</span><br />The SoulFullFilled Living Coach <br />www.truecallings.net";
  authors[6] = "<span>Joan Walker</span><br />President of Career Pathways";

  var count = 0;

$(document).ready(function() {
	$('#testimonials').ready(function() {
		nextTestimonial();
		setInterval(nextTestimonial, 15030);
	})
});	


function nextTestimonial() {
	$('#testimonialcontent').fadeIn(1000);
  	$('#testimonial').html(testimonials[count % 7]);
	$('#author').html(authors[count % 7]);
	
	count++;
	
	$('#testimonialcontent').delay(13000).fadeOut(1000);
}


function turnPage(page)
{
	if (page == 'whatyouget')
	{
		$('#aboutshawn').slideUp(600);
		$('#showmetheprice').slideUp(600);
		$('#whatyouget').delay(600).slideDown(1000);
	}
	else if (page == 'showmetheprice')
	{
		$('#aboutshawn').slideUp(600);
		$('#whatyouget').slideUp(600);
		$('#showmetheprice').delay(600).slideDown(1000);
	}
	else
	{
		$('#whatyouget').slideUp(600);
		$('#showmetheprice').slideUp(600);
		$('#aboutshawn').delay(600).slideDown(1000);
	}
}

function buyNow(formId)
{
	$('#buyform' + formId).submit();
}