

$(function(){
	$('.box_group_waterhouse a.tips').qtip({
		content: {
			text: function(api) {
				return $(this).parent().find('.bulle').html();
			}
		},
		style: {
			classes : 'ui-tooltip-regar ui-tooltip-rounded',
			tip: {
				corner: true,
				offset: 15,
				width: 10,
				height: 10
			}
		},
		hide: { fixed: true },
		position: {
			my: 'bottom right',  // Position my top left...
			at: 'top right', // at the bottom right of...
			adjust: { x: -17, y: 7 } 
		}
	});
	
	
	
});

