$(document).ready(function() {
	$("#couleursdispo div").each(
		function() {
			var text=$(this).children("span").text();
			$(this).tipsy({title: function() {return text;}, gravity: 'n' });
		}
	);
});

