$(document).ready(function(){
//    $(".toggle_container").hide();
    $(".trigger").click(function(){
        $(this).toggleClass("active"); $(this).next(".toggle_container").slideToggle("slow,");
    });
$(".trigger2").click(function(){
        $(this).parent(".toggle_container").animate({height:"toggle",opacity:"toggle"},350,"swing"); $(".trigger").toggleClass("active");
    });
});
