﻿$(document).ready(function() {
    
    $(".open").show();
    
    $(".toggle_container").hide();

    $(".trigger").toggle(function() {
        $(this).addClass("active");
    }, function() {
        $(this).removeClass("active");
    });

    $(".trigger").click(function() {
        $(this).next(".toggle_container").slideToggle("slow,");
    });
    
     $(".trigger").click(function() {
        $(this).next(".open").slideToggle("slow,");
    });

});