
	// Create the tooltips only on document load
	$(document).ready(function() 
	{
	   // By suppling no content attribute, the library uses each elements title attribute by default
	   $('#ContentInformation a[href][title]').qtip({
	      content: {
	         text: false // Use each elements title attribute
	      },

		   style: { 
		      width: 200,
		      padding: 5,
		      background: '#F9E98E',
		      color: '333333',
		      border: {
		         width: 2,
		         radius: 4,
		         color: '#F0DE7D'
		      },
		      tip: 'topLeft',
		      name: 'cream' // Inherit the rest of the attributes from the preset dark style
		   }
	      
	   });

	});
	
