var tooltips = {
	config:function(){
		$('.tooltip').qtip({
			position: {
				corner: {
					target: 'topMiddle',
					tooltip: 'bottomMiddle'
				}
			},// position
			style: { 
				width: 200,
				padding: 5,
				background: '#f2f2f2',
				color: '#666',
				textAlign: 'center',
				'font-size':12,
				border: {
					width: 7,
					radius: 10,
					color: '#f2f2f2'
				},
				tip: 'bottomMiddle',
				name: 'dark' // Inherit the rest of the attributes from the preset dark style
			} // style
		});// qtip
	}
}
$(tooltips.config);
