$(function() {

$(".event-active-in span").hide();

var idd = $(".events-ul li").attr("id");
          $("."+idd+"").show();
          $("#"+idd+"").addClass("active");
                       
 $(".events-ul li").click(function () {
          $(".events-ul li").removeClass("active");
          $(".event-active-in span").hide("");
          var id = $(this).attr("id");
          $("."+id+"").show("");
          $(this).addClass("active");

       
      });
   
});
