﻿$(function() {

	var _bgColor = "#3376A0";
	var _styname = "blue";
	if(window.location.href.match(/pcaeventcalendar/i)){_bgColor = "#661E21";_styname = "red";}


	$(".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: _styname, tip: true,
				border: { width: 4, radius: 4, color: _bgColor },
				title: { "background-color": _bgColor, color: "#FFF" }
			},
			show: { effect: { type: "fade", length: 300 } },
			hide: { effect: { type: "fade", length: 100 } }
		});
	});
});

