//quote array
	quoteList = new Array();
	
	quoteList[0] = "My nagging doubts are gone for good and we are a happier family.";
	quoteList[1] = "I can finally look into her eyes and feel at ease knowing that I did the right thing.";
	quoteList[2] = "I would recommend DNA Bioservices to anyone...";
	quoteList[3] = "Now, I can allow myself to be a happy father without any doubts!";
	quoteList[4] = "Thank you so much for making us a happy family again.";
	quoteList[5] = "It was the best thing we could have done to put our minds at ease.";
	quoteList[6] = "DNA Bioservices has taken away 32 years of worry and uncertainty.";
	quoteList[7] = "I could finally prove to everyone else what I already knew.";
	quoteList[8] = "I have peace of mind - My doubts have been put to rest.";
	quoteList[9] = "Going to DNA Bioservices is probably the best thing that I ever did for my stepchildren.";
	
	
	//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];

