// Create the tooltips only on document load
$(document).ready(function() {
	// By suppling no content attribute, the library uses each elements title attribute by default
	$('.helpIcon, .helpIconLink, .helpText, .updated a, .condizioniText').qtip({
		content: {
			text: false // Use each elements title attribute
		},
		 position: {
	      corner: {
	         target: 'rightMiddle',
	         tooltip: 'leftMiddle'
	      }
	   },
	style: 'cream' // Give it some style
	});
	  
});