$(function() {
$('a[title]:not(a[rel="other-views"],a.tips)').qtip({ // Con not('..') evito che si applichi a le THUMBS di THICKBOX: cancellava il TITLE di A e quindi la caption dell'immagine era vuota!
				content: {
					prerender: false // If set to FALSE all tooltips are generated when needed, not at page load.
				},
				show: {
					//solo: true // If set to true, all other tooltips will he hidden when this tooltip is shown
					//solo: $('a[title]')
				},
				position: {
				//	corner: {
				//		target: 'topLeft',
				//		tooltip: 'rightBottom'
				//	},
					adjust: {
						screen: true, // Keep the tooltip on-screen at all times
						resize: true
					}
				},
				style: {
					name: 'cream',
					tip: true
					//tip: { // Now an object instead of a string
					//	corner: 'rightBottom', // We declare our corner within the object using the corner sub-option
					//	color: '#6699CC',
					//	size: {
					//		x: 20, // Be careful that the x and y values refer to coordinates on screen, not height or width.
					//		y : 8 // Depending on which corner your tooltip is at, x and y could mean either height or width!
					//	}
					//},
					//border: {
					//	width: 10,
					//	radius: 8,
					//	color: '#6699CC'
					//},
					//title: { 'color': 'red', 'background': 'red', 'overflow': 'hidden' },
					//width: 200
				}
		});
});
