function qtip_include() {
	jQuery(document).ready(function() {
		jQuery('.tip[title]').each(function() {
			jQuery(this).qtip({
				//content: $(this).attr('title'),
				content: {
					text: false
				},
				position: {
					corner: {
						tooltip: 'bottomLeft',
						target: 'topRight'
					},
					adjust: {
						screen: true // qtip on-screen at all times
					}
				},
				style: {
					border: {
						width: 1,
						radius: 10,
						color: '#50056e'
					},
					padding: 1,
					tip: true,
					background: '#50056e',
					color: '#ffffff'
				},
				show: {
					effect: {
						length: 0
					}
				},
				hide: {
					effect: {
						length: 0
					}
				}
			});
		});
		jQuery('.tipdelayed[title]').each(function() {
			jQuery(this).qtip({
				//content: $(this).attr('title'),
				content: {
					text: false
				},
				position: {
					corner: {
						tooltip: 'bottomLeft',
						target: 'topRight'
					},
					adjust: {
						screen: true // qtip on-screen at all times
					}
				},
				style: {
					border: {
						width: 1,
						radius: 10,
						color: '#50056e'
					},
					padding: 1,
					tip: true,
					background: '#50056e',
					color: '#ffffff'
				},
				show: {
					solo: true,
					effect: {
						length: 0
					}
				},
				hide: {
					delay: 2000,
					effect: {
						length: 0
					}
				}
			});
		});
	});
}
