
var OLMCR_WISDOM = 
[
   {
      content: 'For God so loved the world that he gave his only son, so that those who believe in him shall not perish but have eternal life.',
      author: 'John 3:14'
   },
   {
      content: 'Remember man that you are dust and unto dust you shall return.',
      author: 'Genesis 3:19'
   },
   {
      content: 'What so ever you do to the least of my brothers, that you do unto me.',
      author: 'Jesus'
   },
   {
      content: 'And they\'ll know we are Christians by our love.'
   },
   {
      content: 'The best way to improve human rights is to stand with the oppressed, not the oppressors.',
      author: 'Anonymous Refugee'
   },
   {
      content: 'Blessed are the merciful: for they shall obtain mercy.',
      author: 'Matthew 5:7'
   }
]



function olmcrGetWisdom() {
   var len = OLMCR_WISDOM.length;
   var idx = Math.floor( Math.random() * len );
   if ( 0 <= idx && idx < len ) {
      return OLMCR_WISDOM[ idx ];
   }
   return null;
}

