// Create the tooltips only on document load
jQuery(document).ready(function() 
{
	// By suppling no content attribute, the library uses each elements title attribute by default
	jQuery('a[title]').qtip({
		position: {
			corner: {
				target: 'topMiddle',
				tooltip: 'bottomMiddle'
			}
		},
		style: {
			border: {
				width: 2,
				radius: 4
			},
			name: 'red',
			textAlign: 'center',
			tip: true // Give it a speech bubble tip with automatic corner detection
		}
	})	  
	// NOTE: You can even omit all options and simply replace the regular title tooltips like so:
	// jQuery('#nav a[href]').qtip();
});