//quote array
	quoteList = new Array();
	
quoteList[0] = "&#8217;This report breaks new ground in applying a human development approach to the study of migration. It discusses who migrants are, where they come from and go to, and why they move. It looks at the multiple impacts of migration for all who are affected by it&ndash;not just those who move, but also those who stay.&#8217;<br/>&#8211;<em><strong>Helen Clark</strong><br/>UNDP Administrator</em>";

	
	//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_top = quoteList[random_number];