$(function() {
	$('.event_info').each(function(){
		$(this).hide();
		$(this).children('.event_info').css('zIndex', 1000);
		$(this).css('zIndex', 100);
		$($(this).parent()).hover(function(){
			$(this).children('.event_info').fadeIn(100);
		}, function(){
			$(this).children('.event_info').fadeOut(100);
		});
    });
});

