//quote array
qList = new Array();
cList = new Array();
	
qList[0] = "Which is the greater number 5 or 35" ;
cList[0] = "22";
	
qList[1] = "Which is the lighter color GREY or BLACK";
cList[1] = "35";

qList[2] = "Which of these is a colour: church, bread, restaurant, elephant or red?"
cList[2] = "31";

qList[3] = "Of elbow, library or egg what is the body part?"
cList[3] = "21";

qList[4] = "The colour of a pink house is?"
cList[4] = "56";

qList[5] = "What is the 3rd number in the list twenty four, ten and eight?"
cList[5] = "75";

qList[6] = "The 1st colour in yellow, T-shirt and blue is?"
cList[6] = "95";

qList[7] = "The day of the week in T-shirt, coffee, Wednesday, house, glove or prison is?"
cList[7] = "11";

qList[8] = "Ear, knee or ankle: which is above the waist?"
cList[8] = "38";

qList[9] = "If a person is called Mary, what is their name?"
cList[9] = "64";

	//randomization
	var now = new Date();
	var secs = now.getSeconds();
	var raw_random_number = Math.random(secs);
	var random_number = Math.round(raw_random_number * (qList.length));

	if (random_number == qList.length){random_number = 0}
	
	
	//set quote
	var dquestion = qList[random_number];
	var danswer = cList[random_number];

