﻿$(function() {
	$(".calendarEvent a").each(function() {
		var $this = $(this);
		var tooltip = $(".calendarTooltip", $this.parent()).html();
		$this.qtip({
			content: { title: $this.text(), text: tooltip },
			position: { corner: { target: "topMiddle", tooltip: "bottomMiddle" } },
			style: { name: "blue", tip: true,
				border: { width: 4, radius: 4, color: "#3376A0" },
				title: { "background-color": "#3376A0", color: "#FFF" }
			},
			show: { effect: { type: "fade", length: 300 } },
			hide: { effect: { type: "fade", length: 100 } }
		});
	});
});
