//ajax pour bandeau
ajax();
function ajax () {var xhr_object = null; 
 
if(window.XMLHttpRequest) // Firefox 
   xhr_object = new XMLHttpRequest(); 
	else if(window.ActiveXObject) // Internet Explorer 
   xhr_object = new ActiveXObject("Microsoft.XMLHTTP"); 
else { // XMLHttpRequest non supporté par le navigateur 
	   alert("Votre navigateur ne supporte pas les objets XMLHTTPRequest..."); 
   return; 
	} 
	 
		xhr_object.open("GET", "http://www.hellorecette.fr/spip.php?page=bandeau", true); 
	 
	xhr_object.onreadystatechange = function() { 
	   if(this.readyState == 4) document.getElementById("bloc-3").innerHTML=this.responseText; 
	} 
xhr_object.send(null); 
 }
 setInterval(ajax,4000)
 

