	//quote array
	quoteList = new Array();
	
	quoteList[0] = "Robev Taxi?<br />Yes. Great service. <br />I'll use them again. ";
	quoteList[1] = "Thanx for great trip.";
	quoteList[2] = "I'd missed my plane <br />and this taxi company <br />helps me to catch next from Bucharest <br />Thank you.";
	quoteList[3] = "I'll call again to Robev Taxi.";
	quoteList[4] = "To travel again <br />with this company - thumbs up!!!";
	quoteList[5] = "Great Taxi company";
	quoteList[6] = "Their taxi drivers <br />are very good professionals";
	quoteList[7] = "I never believe <br />taxi drivers, <br />but this company is <br />other story.";
	quoteList[8] = "If you hurry up <br />call them.";
	quoteList[9] = "Good cars,<br />good drivers, <br />nice trip.<br />I'll call again.";
	quoteList[10] = "I'm using Robev Taxi <br />every week to travel <br />to Bucharest. I feel very comfortable<br /> in their cars";	
	quoteList[11] = "To travel between <br />Bucharest and Rousse - <br />Yes with Robev Taxi.<br />Every time!!!";	
	


	//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];
