$(function() {
	$(".event div:not(.event-popup)").hover(
		function () {
			$(this).children("div").css("display","block");
		}, 
		function () {
			$(this).children("div").css("display","none");
		}
	);
	
	$(".event").hover(
		function () {
			$(this).addClass("event-hover");
		}, 
		function () {
			$(this).removeClass("event-hover");
		}
	);
});

