/**
 * Simple Accordian Menu - An accordian menu plugin for jQuery that saves state of menu.
 * @requires jQuery v1.1.3.1 or above
 *
 * http://archaicsoftware.com
 *
 * Copyright (c) 2009 Archaic Software
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 *
 * Version: 1.0.1
 */

	
		$(document).ready(function()
{
	$("#accordianMenu div.menu_head").click(function()
	{
		$(this).next("div.menu_body").slideToggle("slow").siblings("div.menu_body").slideUp("slow");
		$(this).siblings();
		
	});	

});
	  
	
	