

var counter = 0;
var end = content.length;

function nextContent()
{
	
	if(counter < end)
	{
		return content[counter];
	}
	else
	{
		counter = 0;
		return content[counter];
	}	
	
}

$("#change").click(function (){	
	setTimeout("document.getElementById('meertekst2').style.display = 'block'",2);
	$("#container").animate().html(
		nextContent()
	);
	counter++;	
}
);
