$(document).ready(function()
{
	//slides the element with class "menu_body" when paragraph with class "menu_head" is clicked 
	$("#firstpane div.msg_menu_head").click(function()
    {
		$(this).css({backgroundImage:"url(modules/acordeon/images/down.png)"}).next("div.msg_menu_body").slideToggle(300).siblings("div.msg_menu_body").slideUp("slow");
       	$(this).siblings().css({backgroundImage:"url(modules/acordeon/images/left.png)"});
	});
});

