function qtip_include() {
	$(document).ready(function() {
		$('.tip[title]').each(function() {
			$(this).qtip({
				//content: $(this).attr('title'),
				content: {
					text: false
				},
				position: {
					corner: {
						tooltip: 'bottomLeft',
						target: 'topRight'
					}
				},
				style: {
					border: {
						width: 1,
						radius: 10,
						color: '#2d353e'
					},
					padding: 1,
					tip: true,
					background: '#2d353e',
					color: '#ffffff'
				}
			});
		});
	});
}