$(function(){ 
    $.ajax({ 
    type: "POST", 
    url: "/fr/default/layout/largebanner/", 
    success: function(retour){ 
                if (document.getElementById)
			{
			document.getElementById("largeBanner").innerHTML = retour;
			}
		  else if (document.all)
			{
			document.all["largeBanner"].innerHTML = retour;
			} 
    } 
});
}); 
$(function(){ 
    $.ajax({ 
    type: "POST", 
    url: "/fr/default/layout/square/", 
    success: function(retour){ 
                if (document.getElementById)
			{
			document.getElementById("square").innerHTML = retour;
			}
		  else if (document.all)
			{
			document.all["square"].innerHTML = retour;
			} 
    } 
});
});

$(function(){ 
    $.ajax({ 
    type: "POST", 
    url: "/fr/default/layout/nbrarticleincart/", 
    success: function(retour){ 
                if (document.getElementById)
			{
			document.getElementById("linkPanier").innerHTML = retour;
			}
		  else if (document.all)
			{
			document.all["linkPanier"].innerHTML = retour;
			} 
    } 
});
});