function ajaxFunction()
{
	var xmlHttp;
	try
  	{ 
  		xmlHttp=new XMLHttpRequest();  
  	}
	catch (e)
  		{  
  		try
    	{    
	    	xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");    
    	}
  		catch (e)
  	 	{    
	  	 	try
      		{      
	      		xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");      
	      	}
    		catch (e)
      		{      
	      		alert("Your browser does not support AJAX!");      
	      		return false;      
      		}    
      	}  
     }  
	xmlHttp.onreadystatechange=function()
	{
	if(xmlHttp.readyState==4)
	  {
	  var Antwoord=xmlHttp.responseText
	  document.getElementById("bericht").innerHTML= Antwoord;
	  }
	}

//	var url="time.php?Item=1"+"1"+Math.random();
	
	   
	if(k<=4){
		var url="http://www.ambideejays.be/gettekst.php?Item="+k+"&"+Math.random();
		xmlHttp.open("GET",url,true);
		xmlHttp.send(null);      
		}
	
	if(k==5){
		var url="http://www.ambideejays.be/getsong.php?Item="+k+"&"+Math.random();
		xmlHttp.open("GET",url,true);
		xmlHttp.send(null);      
		
		k=0;
	}
	k = k+1;
	
}