// Create the tooltips only on document load
$(document).ready(function() 
{
   // By suppling no content attribute, the library uses each elements title attribute by default
   $('#right a[title]').qtip({
      content: {
         text: false // Use each elements title attribute
      },  
	style: { 
      width: {
		min: 100,
		max: 300
	  },
      padding: 5,
      background: '#DAEDDA',
      color: '#008982',
      textAlign: 'center',
      border: {
         width: 6,
         radius: 5,
         color: '#00A493'
      },
      tip:{
		  corner: 'topLeft'
	  },
		  name: 'dark' // Inherit the rest of the attributes from the preset dark style
   }

   });
   
   // NOTE: You can even omit all options and simply replace the regular title tooltips like so:
   // $('#content a[href]').qtip();
});
