window.addEvent('domready', function() {  

	//store titles and text  
	$$('.TipsVilles').each(function(element,index) {
		var content = element.get('title').split('::');  
		element.store('tip:title', content[0]);
		element.store('tip:text', content[1]);
		element.store('tip:classPerso', content[2]);
	});  
	
	//create the tooltips  
	var tipz = new Tips('.TipsVilles',{ 
		className: 'tool-TipsVilles', 
		fixed: true, 
		hideDelay: 10, 
		showDelay: 10 
	}); 
	
	//-------------------------------
	
	//store titles and text  
	$$('.Tips2').each(function(element,index) {
		var content = element.get('title').split('::');  
		element.store('tip:title', content[0]);
		element.store('tip:text', content[1]);
	});  
	
	//create the tooltips  
	var tipz = new Tips('.Tips2',{ 
		className: 'tool-tip2', 
		fixed: false, 
		hideDelay: 10, 
		showDelay: 10 
	}); 

});