/* EXPAND / CONTRACT TOGGLE */

jQuery(document).ready(function() {
	jQuery(".exp-content").hide();
	// toggle the componenet with class msg_body
	jQuery(".exp-heading").click(function() {
		jQuery(this).next(".exp-content").slideToggle(500);
	});
});


