var t;
var timer_is_on=0;

function count_it()
{
	t = setTimeout("count_it()",2500);
}

function change_me()
{
	if (!timer_is_on)
	{
		  timer_is_on = 1;
		  count_it();
	}
}
