jQuery(document).ready(function() 
{
   // By suppling no content attribute, the library uses each elements title attribute by default
   jQuery('#userbar a[href][title]').qtip({
      content: {
         text: false // Use each elements title attribute
      },
	  position: {
        corner: {
        tooltip: 'bottomMiddle', // Use the corner...
		target: 'topMiddle'
        }
	  },
	  show: {
	  },
	  style: {
		border: {
		   width: 1,
		   radius: 5
		},
		
		padding: 3, 
		textAlign: 'center',
		tip: true, // Give it a speech bubble tip with automatic corner detection
		name: 'cream' // Style it according to the preset 'cream' style
	  }
   });
   
   // NOTE: You can even omit all options and simply replace the regular title tooltips like so:
   // $jQuery('#content a[href]').qtip();
});