$(document).ready(function()
{
	$(".scheduler_item").each(function()
	{
		$(this).qtip(
		{
			content: {
				text: $(this).find('.details')
			},
			hide: {
				delay: 200,
				fixed: true
			},
			position: {
				corner: {
					target: 'rightMiddle',
					tooltip: 'leftMiddle'
				},
				adjust: {
					x: 10
				}
			},
			style: {
				width: 290,
				padding: 10,
				background: '#350c3d',
				color: 'white',
				textAlign: 'center',
				border: {
					width: 1,
					color: '#48324d'
				},
				name: 'dark' // Inherit the rest of the attributes from the preset dark style
			}
		});
	});
});
