$(window).load(function(){
    $(".event_more").mouseup(function(e){
        $(this).css('display', 'none');
        open_div_id = $(this).attr('opendiv');
        $("#" + open_div_id).slideDown(250);
    });
});
