//quote array
quoteList = new Array();

quoteList[0] = "Multidisciplinary Freelance Collective";
quoteList[1] = "Multidisciplinary Freelance Collective";


//randomization
var now = new Date();
var secs = now.getSeconds();
var raw_random_number = Math.random(secs);
var random_number = Math.round(raw_random_number * (quoteList.length));

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


//set quote
var quote = quoteList[random_number];