$(document).ready(function() {
	$('[tip]').each(function() {
		$(this).qtip({
			style : {
				name : 'cream'
			},
			content : {
				text : $(this).attr('tip'),
				title : {
					text : $(this).attr('tip_title') ? $(this)
							.attr('tip_title') : false
				}

			},
			position : {
				corner : {
					target : 'topRight', // Position the tooltip
					// above the link
					tooltip : 'bottomLeft'
				},
				adjust : {
					screen : true
					// Keep the tooltip on-screen at all times
				}

			},
			style : {
				tip : true, // Apply a speech bubble tip to the tooltip at the
				// designated tooltip corner
				border : {
					width : 0,
					radius : 4
				},
				name : 'cream'
				// Set the tooltip width
			}

		});
	});

	$('[ajax_tip]').each(function() {
		$(this).qtip({
			style : {
				name : 'cream'
			},
			content : {
				url : 'help.php?term=' + $(this).attr('ajax_tip'),
				title : {
					text : $(this).attr('tip_title') ? $(this)
							.attr('tip_title') : false
				}
			},
			position : {
				corner : {
					target : 'topRight', // Position the tooltip
					// above the link
					tooltip : 'bottomLeft'
				},
				adjust : {
					screen : true
					// Keep the tooltip on-screen at all times
				}
			},
			style : {
				tip : true, // Apply a speech bubble tip to the tooltip at the
				// designated tooltip corner
				border : {
					width : 0,
					radius : 4
				},
				name : 'cream', // Use the default light style
				width : 570
				// Set the tooltip width
			}
		});
	});
});