$(document).ready(function() 
{
	$('[tooltip]').each(function()
	{
		$(this).qtip({
			content: $(this).attr('tooltip'),
			position: {
				corner: {
					target: 'topMiddle',
					tooltip: 'bottomMiddle'
				}
			},
			style: { 
				padding: 1,
				background: '#808080',
				color: '#FFFFFF',
				textAlign: 'center',
				fontFamily: 'DINPro-Regular',
				fontSize:11,
				border: { width: 2, color: '#808080' },
				tip: { corner: 'bottomMiddle', size: { x: 10, y: 8 } }
			}
		});
	});
});

