$(document).ready(function(){
	$(".tooltip").qtip({
		content: {
			title: { text: false }
	},
		position: {
			corner: {
				target: 'topMiddle',
				tooltip: 'bottomLeft'
			},
			adjust: {
				x: 0,
				y: 5
			}
		},
		style: { 
			background: '#99B2CB',
			color: '#f4f3f3',
			'font-size': 11,
			'text-shadow': '-1px 0px 0px #ccc',
			'font-family': 'MuseoSlab500, Arial, Helvetica, sans-serif',
			padding: 5,
			'white-space': 'nowrap',	
			textAlign: 'center',
			tip: {
				corner: 'bottomLeft',
				size: {
					x: 11,
					y: 10
				},
				color:'#99B2CB'
			},
			border: {
				color:'#99B2CB',
				radius: 0
			}
		},
		show: {
			delay: 0,
			effect: {
				type: 'fade',
				length: 200
			}
		},
		hide: {
			delay: 0,
			effect: {
				type: 'fade',
				length: 300
			}
		}
	});	
	
});
