function set_tooltip( item, content){
	$(item).qtip({
				
		//content: 'This is an active list element',
		content: content,
		show: 'mouseover',
		hide: 'mouseout',
		position: {
			corner: {
				target: 'topLeft',
				tooltip: 'bottomRight'
			}
		},
		style: { 
			width: 200,
			padding: 5,
			//background: '#A2D959',
			color: 'black',
			//textAlign: 'center',
			border: {
				width: 5,
				radius: 5,
				color: '#b2dbe7'
			},
			tip: 'bottomRight',
			name: 'light' // Inherit the rest of the attributes from the preset dark style
		}
	});
}

$(document).ready(function() {
	$('acronym').each(function(i) {
		set_tooltip( this );
	});

	$('img.help').each(function(i) {
		set_tooltip( this );
	});
});
