window.addEvent('domready', function() {  
   
   // <![CDATA[
   
    var links = "animations/index1.htm";	
		
	var blocupdate = $('anim1');
   
		window.addEvent('load', function(event) { 
																
				var req = new Request.HTML({  
					method: 'get',  
					url: links, 
					
					onRequest: function() { 
						blocupdate.set('text', 'Chargement en cours...');
					},  
					
					update: blocupdate,  

					onComplete: function(response) { 
	
					}
					
				}).send();		
			
		}); // Event
		

	// ]]>	
	
});  