
function text()
{
	this[0] = 1;
this[1] = "<strong>Agenzia Volti Casting</strong>&nbsp;&nbsp;&nbsp;<br /><strong>V</strong>ia <strong>G</strong>rimaldi, 2 <strong>B</strong>ologna&nbsp;&nbsp;&nbsp;<br /><strong>T</strong>el. 051 6493075&nbsp;&nbsp;&nbsp;<br /><strong>C</strong>ell. 339 7021788&nbsp;&nbsp;&nbsp;";
}
function grabText()
{
	var today = new Date();
	var textInstance = new text();
	var Text = textInstance[(today.getSeconds() % textInstance[0]) + 1];
	return Text;
}
document.writeln(grabText());
