$(document).ready(function(){
//hide the all of the element with class msg_body
$(".ibh_expand_body").hide();
//toggle the component with class msg_body
$(".ibh_expand_head").click(function(){
$(this).toggleClass("ibh_expand_head2").next(".ibh_expand_body").slideToggle(150);
});
});
