// JavaScript Document
jQuery(document).ready(function() {
	jQuery("body .hidden_content").hide();
	//toggle the componenet with class msg_body
	jQuery("body .show_content").click(function()
		{				
			jQuery(this).next(".hidden_content").slideToggle(500);
		});
});
