function toggleForm() {
    $('.quote_box_content_hide').hide();
    $('span.accordion_trigger').click(function() {
        $(this).parent().siblings('div.quote_box_content_hide').toggle();
    });
}


$(function(){
    toggleForm();
});


