function gonews(idn)
{
	if (idn == 3) idn = 0;
	changenews(idn);
	idn++;
	setTimeout(gonews(idn), 1000);
}

