jQuery(document).ready(function() {
						   
	
	$('acronym[title]').each(function(){
      $(this).qtip({
		  
		   content: {
			  url: '/common/acronyms.php',
			  data: { slug: $(this).text() },
			  method: 'get'
		   },
         position: {
            corner: {
               target: 'topRight', // Position the tooltip above the link
               tooltip: 'bottomLeft'
            },
            adjust: {
               screen: true // Keep the tooltip on-screen at all times
            }
         },
         show: { 
            solo: true // Only show one tooltip at a time
         },
		 hide: { when: 'inactive', delay: 3000 },
         style: {
            tip: true, // Apply a speech bubble tip to the tooltip at the designated tooltip corner
            name: 'cream', // Use the default light style
			width: 200
         }
      })
   
	
   });
});
