/*------- Custom Accordion ---------------- */
//hide the all of the element with class trs-acc-bdy
$(".trs-acc-bdy").hide();
$(".trs-acc-hdg").append( '<i class="reveal pull-right fa fa-angle-down pad20"></i>');
//toggle the componenet with class msg_body
$(".trs-acc-hdg").click(function(e){
e.preventDefault();
$(".trs-acc-bdy").hide('slow');
$(this).next(".trs-acc-bdy").slideToggle(800);
$(this).next('i.reveal').removeClass('fa-angle-down');
});
$(".active .trs-acc-bdy").show();