$(document).ready(function() 
{
   // By suppling no content attribute, the library uses each elements title attribute by default
   $('a[href][title]').qtip({
	  content: {
		 text: false // Use each elements title attribute
	  },
	  show: { delay: 0 },
	  position: {
		corner: {
			tooltip: 'bottomMiddle',
			target: 'topMiddle'
		}
	  },
	  style: {
		background: '#ecebe7',
		color: '#be1e23',
		border: {
			width: 2,
			radius: 5,
			color: '#be1e23'
		},
		padding: 5,
		textAlign: 'left',
		tip: true,
		width: { max: 500}
		//name: 'red' // inherit rest of styles from built-in style
	  }
   });
   
});
