/**
 *	Returns a random testimonial.
*/
function getRandomTestimonialSnippet ()
{
	testimonials = 
	[
		"I suffered from depression for eight years, MG Hypnosis helped...",
		"I am doing quite well since our session! I have not had any attacks, and when I feel them coming on I am able to keep them at bay.",
		"You treated me a while ago for speech giving. I was singing your praises to all my friends. Thank you."
	];
	return testimonials[Math.floor(Math.random() * testimonials.length)];
}
function getRandomChildrensTestimonialSnippet ()
{
	testimonials = 
	[
		"I suffered from depression for eight years, MG Hypnosis helped...",
		"I am doing quite well since our session! I have not had any attacks, and when I feel them coming on I am able to keep them at bay.",
		"You treated me a while ago for speech giving. I was singing your praises to all my friends. Thank you."
	];
	return testimonials[Math.floor(Math.random() * testimonials.length)];
}
function getShopTestimonials ()
{
	testimonials = 
	[
	 	"I love the CD. Your voice is so clear, concise, calming and reassuring."
	];
	return testimonials[Math.floor(Math.random() * testimonials.length)];
}
/**
 *	Validate an email address.
*/
function validateEmail(email) {
   var reg = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;
   if(reg.test(email) == false) {
      return false;
   }
}
