quoteList = new Array();

quoteList[0] = "The pink crystal salt powder imparts a much better taste to food.  It's subtle, but you really notice it once you go back to regular salt. The Ancient Ocean Salt has a richer, more complex flavor.<br><b>- Pierre, San Francisco, CA</b>";	
quoteList[1] = "Thank you so much for importing these wonderful salts.  Seeing is believing, but tasting is feeling!<br><b>-Vessy, Venice Beach, CA</b>";
quoteList[2] = "I've been doing the Brine Therapy for a month and I love it.  It gives me a nice, even feeling. Now I know what it means to have my electrolytes balanced.<br><b>- Alberta, Chicago, IL</b>";
quoteList[3] = "I think your Electrolyte Energizer Drink recipe is better than Gatorade!<br><b>-William, Los Angeles, CA</b>";  
quoteList[4] = "Since I run and bike a lot, I took your suggestion to  add a tablespoon of brine concentrate to the water I drink while I am exercising.  The difference is amazing, as I don't get bloated anymore. I can feel the minerals that I am sweating out being replenished right away.<br><b>-Leo, Denver, CO</b>";
quoteList[5] = "I need MORE!  I don't want to use any other salt ever again.<br><b>- Michael, Temecula, CA</b>";
quoteList[6] = "When I taste this salt, it is like I am tasting the ancient sea when the earth was new and pure.<br><b>- Leilani, Kaua`i, HI</b>";	

now = new Date();

seed = now.getSeconds();
seed2 = now.getSeconds();

var random_number = Math.random(seed);
var random_number2 = Math.random(seed2);
	
var range = random_number * quoteList.length;
var range2 = random_number2 * quoteList.length;

var rounded_number = Math.round(range);
var rounded_number2 = Math.round(range2);

if (rounded_number == quoteList.length){rounded_number = 0}
if (rounded_number2 == quoteList.length){rounded_number2 = 0}

var quote = rounded_number;
var quote2 = rounded_number2;
