var counterquotes=0;

var Quotation=new Array();

// QUOTATIONS
Quotation[0] = '<span class="intro">"The Lorenzo Natali Prize highlights the fact that the right to information is a prerequisite to the freedom of expression.<br>The right to information is fundamental for the enforcement of Democracy and for sustainable and balanced social and economic development."</span><p align="right">Louis Michel, European commissioner for development and humanitarian aid</p>';
Quotation[1] = '<span class="intro">"My Lorenzo Natali Award was important not only for me, but also for my country. It was a sign of solidarity with the struggle for freedom taking place in Belarus, a recognition o its universal value."</span><p align="right">Andrej Dynko, Belarus (2nd Prize Europe/Lorenzo Natali Prize 2007)</p>';
// Quotation[2] = '<span class="intro">"Being nominated for the Natali Prize 2006 had been one of the best honours I have had as a journalist: being recognized because of so urgent and important issues as the defense of human rights and democracy, and meet another journalists from other parts from the world who hardly work to give this profession a deep human sense, had been a huge incentive to keep on perseverating in this work clearly understanding that as journalists we have a compromise with truth, justice and human rights."</span><p align="right">Maria Paz Cuevas (3rd Prize Latin America & Caribbean/Lorenzo Natali Prize 2007)</p>';
Quotation[2] = '<span class="intro">"Being a finalist in the prestigious award motivated me to work harder to improve my self as a journalist and placed responsibility on my shoulders to peruse promoting for better human rights in Jordan."</span><p align="right">Mohammad Ben Hussein, United Arab Emirates (UAE)<br>(2nd Prize The Arab World and the Middle East/Lorenzo Natali Prize 2007)</p>';
Quotation[3] = '<span class="intro">"More than anything else, it is the L. Natali Prize itself that completely changed one\'s outlook in life, making one conscious and aware of the role the free media can play in promoting freedom, democracy and human rights."</span><p align="right">Aijaz Zaka Syed, United Arab Emirates (UAE)<br>(3rd Prize The Arab World, Iran and Israel/Lorenzo Natali Prize 2007)</p>';

function stopRotate()	{
	if (delayedtimeout) {	
		clearTimeout(delayedtimeout);
	}
	clearTimeout(timeoutID);
}
function rotateEvery(sec)
{


	if (counterquotes == Quotation.length){
		counterquotes=0;
	}
	
document.getElementById('textrotator').innerHTML = Quotation[counterquotes];
counterquotes++;
timeoutID = setTimeout('rotateEvery('+sec+')', sec*1000);
}

function delayedRotateEvery(nb)	{
delayedtimeout = setTimeout('rotateEvery('+nb+')', 1000); 
}