jQuery.noConflict();

jQuery('ul.list a[href][title]').qtip({
	content: {
		text: false // Use each elements title attribute
	},
	style: { 
 	tip: 'leftTop',
	border: {
		width: 4,
		radius: 4,
		color: '#767676'
	},
	background: '#767676',
	color: '#fff',
	name: 'cream' // Inherit the rest of the attributes from the preset dark style
   }
});
