﻿jQuery(document).ready(function() {
    //hide the all of the element with class msg_body
    jQuery(".isStaffBody").hide();

    //toggle the component with class msg_body
    jQuery(".isHideBio").click(function() {

        jQuery(this).children(".isStaffTop").children(".isStaffFloat").children(".isExpandArrow").toggle();
        jQuery(this).next(".isStaffBody").slideToggle(200);

    });
});