$(document).ready(function() {
$(".toggle_container:not(:first)").hide();
$("h2.trigger").click(function() {
if ($(this).next().is(":visible")) {
$(this).next().slideUp("slow");
}
else {
$(this).siblings(".toggle_container:visible").slideUp("slow");
$(this).next().slideDown("slow");
}
return false;
});
})


