// Create the tooltips only on document load
$(document).ready(function() 
{
   // Match all link elements with href attributes within the content div
   $('#triger div[title]').qtip(
   {
	  position: {
		  corner: {
			 target: 'rightMiddle',
			 tooltip: 'leftMiddle'
		  	}
	 	  },
	  style: { 
	  	name: 'cream',// Inherit from preset style
		width: 350,
		textAlign: 'center'
		}

   });

});
