
var EventPopup =
{
	init: function()
	{
		$(".tooltip").hide();
		var eventContainer = $("div .tipcontainer");
		for (var i = 0, ii = eventContainer.length; i < ii; i++)
		{
			var thisOne = eventContainer[i].className;
			$(eventContainer[i]).bind("mouseover", function()
			{
				if (thisOne == 'tipcontainer')
				{
					var test = $(this).closest("div").find("div .tooltip").text();
					test = test.slice(-25,-9);
					if (test != "Events Scheduled")
					{
						$(this).closest("div").find("div .tooltip").show();
					}
					
				}
			});
			$(eventContainer[i]).bind("mouseout", function()
			{
				if (thisOne == 'tipcontainer')
				{
					var test = $(this).closest("div").find("div .tooltip").text();
					test = test.slice(-25,-9);
					if (test != "Events Scheduled")
						{
							$(this).closest("div").find("div .tooltip").hide();
						}
				}
			});
		}
	}
};

EventPopup.init();

