quoteList = new Array();

quoteList[0] = '<span class="quote">"The informed source for many cutting-edge globetrotters."</span><div class="source">USA Today</div>';
quoteList[1] = '<span class="quote">"A daily clearinghouse for the best of the world’s new and significant hotels, spas, restaurants and trends."</span><div class="source">Condé Nast Traveler</div>';
quoteList[2] = '<span class="quote">"I loathe these guys but I keep tuning in. Painfully swanky getaways, infinity pools, massages. Bloody brilliant."</span><div class="source">The Guardian</div>';
quoteList[3] = '<span class="quote">"A rare Bright Spot."</span><div class="source">Women’s Wear Daily</div>';
quoteList[4] = '<span class="quote">"With bite size daily ideas and hotspot roundups, globorati is particularly useful for the overwhelmed."</span><div class="source">Financial Times</div>';
quoteList[5] = '<span class="quote">"If the only way you like to travel is in first class, globorati’s focus on luxury trips may be for you."</span><div class="source">Newsweek</div>';

now = new Date();
seed = now.getSeconds();
var random_number = Math.random(seed);
var range = random_number * quoteList.length;
var rounded_number = Math.round(range);

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

var quote = rounded_number;