$(document).ready(function()
{
if($("a.selected").parent("p.menu_head").parent().index("div.menu_list") >= 0 )
	{
		$("a.selected").parent("p.menu_head").next("div.menu_body").show();
		$("a.selected").parent("p.menu_head").next("div.menu_body").find("div.menu_body").show();
		$("a.selected").parent("p.menu_head").css({backgroundImage:"url(/template/upc/images/ar-down.png)"});
	}
	else
	{
  $(".selected").parents("div.menu_body").show();
		$(".selected").parents("div.menu_body").find("div.menu_body").show();
		$(".selected").parents("div.menu_body").prev("p.menu_head").css({backgroundImage:"url(/template/upc/images/ar-down.png)"});
	}
	//slides the element with class "menu_body" when paragraph with class "menu_head" is clicked 
	$("p.menu_head").click(function()
    {
		$(this).next("div.menu_body").find("div.menu_body").show();
		$(this).css({backgroundImage:"url(/template/upc/images/ar-down.png)"}).next("div.menu_body").slideToggle(300).siblings("div.menu_body").slideUp("slow");
       	$(this).siblings().filter("p").css({backgroundImage:"url(/template/upc/images/ar-left.png)"});
	});
});
 
