// JavaScript Document
$(document).ready(function()
{
   // Match all <A/> links with a title tag and use it as the content (default).
   $('#texte a[title]').qtip({
	style: {
		classes: 'ui-tooltip-blue ui-tooltip-shadow ui-tooltip-rounded'
	},
	position: {
      my: 'bottom left',  // Position my top left...
      at: 'top center', // at the bottom right of...
   }
   });
});
