jQuery(document).ready(function(){
    jQuery(".dropdown_list .dropdown_list_button").bind('click', function(){
        jQuery(this).parents(".dropdown_list").find(".dropdown_list_items").toggle();
        jQuery(this).toggleClass("active");
    });
});
