// Create the tooltips only on document load
$(document).ready(function() 
{
   $('#fullCol a[href][title]').qtip({
      content: { 
	  	text: false // Use each elements title attribute		 
	  },
	   position: {
	      corner: {
             target: 'topMiddle',
	         tooltip: 'bottomMiddle'
	      }
	   },
	  // Give it some style
  	 style: {
      width: 250,
      padding: 8,
	  'font-size': '12px',
      background: '#444444',	  
		border: {
         width: 3,
         radius: 4,
         color: '#151515'
      },
      tip: 'bottomMiddle',	  
	  name: 'dark' // Inherit from preset style	  
	}
 });
   // NOTE: You can even omit all options and simply replace the regular title tooltips like so:
   // $('#content a[href]').qtip();
});