$(document).ready(function() {	
	$('#subfeatures li a[title]').qtip({
		show: 'mouseover',
		hide: 'mouseout',
		position: {
			corner: {
				target: 'topMiddle',
				tooltip: 'topMiddle',
			},					
			adjust: {
				x: 0, y: -40
			}
		},
		style: { 
			width: 180,
			padding: 5,
			background: '#434240',
			color: '#f2efe8',
			textAlign: 'center',
			border: {
				width: 5,
				radius: 5,
				color: '#434240'
			},
			tip: 'bottomMiddle',
			name: 'dark'
		}			
	})
});