$(document).ready(function() {
	if($("#calendar").length > 0){
		//load wTooltip class
		$.getScript("/media/js/jquery/wtooltip.min.js", function(){
		  calendarTooltip();
		});
	}
});

function calendarTooltip(){
	var borderColor = $("#calendar").css("background-color");
	var bgColor = $("#nav a:not(.selected_nav)").css("background-color");
	var textColor = $(".white").css("color");
	$.each($("#calendar table a"), function()
	{
		$(this).wTooltip({
			content: $(this).attr('title').split(' :::: ').join('<br /><br />'),
			style: {
				padding: "10px",
				background: bgColor,
				border: "1px solid "+borderColor,
				color: textColor,
				width: "285px"
			}
		});
		$(this).attr('title', '');
	});

/*
	$("#calendar table a").wTooltip({
		style: {
			padding: "10px",
			background: bgColor,
			border: "1px solid "+borderColor,
			color: textColor,
			width: "285px"
		}
	});
*/
}