var CULTURE             = 'en';
var ENV                 = 'prod';
var HOMEPAGE_VIDEO_URI  = 'https://s3-eu-west-1.amazonaws.com/tahonasociety/videos/intro_sml.f4v';
var QUOTES              = {
  quotes: [
    {
      name:   'Henry Besant',
      quote:  "The Tahona Society represents an open-armed welcome to the bartending community into the wonderful world of Tequila. A place where like-minded people can keep informed and involved with the latest developments in this planet's most vibrant spirit category."
    },
    {
      name:   'Henry Besant',
      quote:  "It is a pleasure and an honour for me to represent the fine and noble people of the Tequila industry as well as the Mexican culture as a whole. I hope in some small way that the Tahona Society plays some part in the ever-increasing respect shown towards Tequila and Mexico generally."
    },
    {
      name:   'Dre Masso',
      quote:  "The Tahona Society is a global educational club for bar industry professionals interested in learning more about Tequila and other Agave spirits. It functions like any other kind of community, sharing ideas, traditions, passions and knowledge amongst its members."
    },
    {
      name:   'Matthias Lataille',
      quote:  "As a bartender, I have very quickly fallen in love with Mexico and its beloved spirit, Tequila, and have always been enthusiastic about sharing my love and passion. I am very honoured and proud to be part of this community!"
    }
  ],
  counter:    0,
  getNext:    function ()
  {
    if(this.counter >= this.quotes.length)
    {
      this.counter = 0;
      return this.getNext();
    };
    q = this.quotes[this.counter];
    this.counter++;
    return q;
  }
};
