var c=0;
var t;
var timer_is_on=0;

function timedCount()
{

if( c == 4)
{
  $('#tuintips').fadeOut(1000);
  $('#tuinactueel').fadeOut(1000);
}
if( c == 5)
{
  $('#tuintrends').fadeIn(1000);
	tuintrends();
}





if( c == 9 )
{
  $('#tuintrends').fadeOut(1000);
}
if( c == 10)
{
  $('#tuinactueel').fadeIn(1000);
	tuinactueel();
}



if( c == 14 )
{
  $('#tuinactueel').fadeOut(1000);
}
if( c == 15)
{
  $('#tuintips').fadeIn(1000);
	tuintips();
	c=0;
	doTimer();
}






//document.getElementById('txt').value=c;
c=c+1;
t=setTimeout("timedCount()",1000);

}

function doTimer()
{
if (!timer_is_on)
  {
  timer_is_on=1;
  timedCount();
  }
}

function stopCount()
{
//clearTimeout(t);
//t=0;
c=-10;
doTimer();
}
