ϣStinging nt').addClass('event-show');
});
$('.open_event_box').click(function(){
$(this).hide();
$(".close_event_box").show();
$('#event').removeClass('event-show');
});
$('.close_event_box').click(function(){
$(this).hide();
$(".open_event_box").show();
$('#event').addClass('event-show');
});
});