/*
//  Developed by Roshan Bhattarai 
//  Visit http://roshanbh.com.np for this script and more.
//  This notice MUST stay intact for legal use

* Modified by: Ricardo Zea
* Project: LexisNexis' Communities

*/

$(document).ready(function()
{
	//slides the element with class "menu_body" when paragraph with class "menu_head" is clicked 
	$(".accordion-container p.section-title, .accordion-container span.section-title").click(function()
    {
	
		$(this).next("div.section-content").slideToggle(300).siblings("div.section-content").slideUp("slow");
      	//$(this).siblings().css({backgroundImage:"url(left.png)"});
		});	
	});
	
