$(document).ready( function() {
	$('table#qtiptable [alt]').qtip({
		style: {
			background: '#eee',
			color: '#000',
			name: 'dark',
			tip: {
				corner: 'bottomRight',
				size: {
					x: 10,
					y: 10
				}
			},
			border: {
				width: 1,
				radius: 6,
				color: '#ccc'
			}
		},
		position: {
			corner: {
				target: 'topLeft',
				tooltip: 'bottomRight'
			}
		}
	});
})

