﻿function loadQuote() {
  var quote = new Array(3);
  var quoteAuthor = new Array(3);

  quote[0] = "Great event, such that I’ve never experienced before! I discovered the future of Herbalife through this event as well as my own future! I cannot wait to go back and promote the next training to all of my downlines! Unbelievable!";
 quoteAuthor[0] = "Joo Young Kang, Global Expansion Team Member, Korea";

  quote[1] = "It was an amazing experience to be the recognition speaker, receiving encouragement and compliments from Chairman's Club Members. Their passion and belief in the business made us believe it's not an impossible goal to become Chairman's Club because Herbalife is where your dreams come true.";
  quoteAuthor[1] = "Kitty Chen & Chen, Sheng-Fu, President's Team Members, Taiwan";
  
  
  quote[2] = "Herbalife parties are my life! My advice to all Herbalife Distributors - Do NOT miss the party!  I always qualify for the Herbalife parties every single year! I would also never want to miss the VIP Treatment in any of those parties!";
  quoteAuthor[2] = "Audrey Chan, Millionaire Team, Malaysia";



  //calculate a random index
  index = Math.floor(Math.random() * quote.length);
   
  //display the quotation
  if (document.getElementById("quote")) {
	document.getElementById("quote").innerHTML = '<p>"' + quote[index] + '"</p>';
	document.getElementById("quote").innerHTML += '<p class="quoteBy">' + quoteAuthor[index] + '</p>';
  }
  
}

window.onload = function() {
	loadQuote();
	selectCurrentLanguage();
}
