var quotearray = new Array(5)

quotearray[0] = "&ldquo;Empowering People through Profits&rdquo;<br><br>We recognise that in the market economy profits are a means to an end and not the end itself. Successful business enterprises allow for investment, job creation, skills development and the overall enhancement of a society&#8217;s prosperity. This is only possible and sustainable if business practices protect the poor and marginalised from exploitation and greed.<br><br><em>Dr Iqbal Surv&eacute;, 2005</em>";
quotearray[1] = "There is no dignity with poverty. Poverty is the lack of capability to function, so reducing it is related to positive freedom.<br><br><em>Amartya Sen, Nobel Economics Laureate, 2000</em>";
quotearray[2] = "Economic liberalisation and free markets have to be more than economically efficient; their consequences have to be socially acceptable if they are to endure. Sustainable development thus requires not just liberalisation and privatisation but also indicatives to ensure that all of society shares in the benefits.<br><br><em>Joseph Stiglitz, Nobel Economics Laureate, 2003</em>";
quotearray[3] = "Our mission in this new century is clear. For good or ill, we live in an interdependent world. We can&#8217;t escape each other. Therefore, we have to spend our lives building a global community of shared  responsibilities, shared values, shared benefits.<br><br><em>William Jefferson Clinton, 2005</em>";
quotearray[4] = "As our awareness of the stark realities and consequences of environmental degradation grows, so do society&#8217;s expectations of the role that business will play in finding solutions.<br><br><em>HRH Prince of Wales, 2003</em>";

var random_quote = (Math.floor(Math.random() * 5));


function getQuote()
{
	var random_quote = (Math.floor(Math.random() * 5));
	document.getElementById("quotebox").innerHTML=(quotearray[random_quote]);
	setTimeout("getQuote()",10000);
}

setTimeout("getQuote()",10000);