// JavaScript Document
var quotes = new Array();
quotes[0] = 'Are you ready to change the way you feel?';
quotes[1] = 'Eat 90% of your food to nourish your body, and 10% to feed your spirit.';
quotes[2] = 'When your body has symptoms, it is asking you to PAY ATTENTION and do something differently.';
quotes[3] = 'The food we eat gives information to each cell about how to live.';
quotes[4] = 'We live in a world of abundance. Create your own reality.';
quotes[5] = 'It is important to do some type of detoxification program at least once a year.';
quotes[6] = 'Eat at least five to nine servings of fruits and vegetables EVERY day.';
quotes[7] = 'It is not how to sweeten, but why do we need everything so sweet.';

document.write(quotes[Math.round(Math.random()*(quotes.length-1))]);

