<!--//---------------------------------+
//  Developed by Roshan Bhattarai 
//  Visit http://roshanbh.com.np for this script and more.
//  This notice MUST stay intact for legal use
// --------------------------------->
$(document).ready(function()
{
	//hide the all of the element with class msg_body
	$(".msg_body").hide();
	//slides the element with class "msg_body" when paragraph with class "msg_head" is clicked 
	$("#firstpane li.msg_head").click(function()
    {
		$(this).next("div.msg_body").slideToggle(200).siblings("div.msg_body").slideUp("fast");	
	});
	//slides the element with class "msg_body" when paragraph with class "msg_head" is clicked 
	$("#secondpane li.msg_head").click(function()
    {
		$(this).next("div.msg_body").slideToggle(200).siblings("div.msg_body").slideUp("fast");	
	});
});