document.observe("dom:loaded", function() {
  initNvt();
});
var lunch = false;
function initNvt()
{
	if(lunch)
		return;
	lunch=true;
	new Ajax.Request('/images/scripts/nouveaute.asp?lng=nl',
	{
		method:'get',
		onSuccess: function(transport){
			var response = transport.responseText || "no response text";
			$('affNvt').innerHTML = response;
		},
		onFailure: function(){}
	});

}

setTimeout("initNvt()",500);
