/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this script and the associated (x)html
is available at http://www.stunicholls.com/menu/pro_concertinaslide_2.html
Copyright (c) 2005-2008 Stu Nicholls. All rights reserved.
This script and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */

$(document).ready(function () {
	speed=400;
	$('#slide li.clicked').children('ul').show();
	$('#slide li:has(ul)').click(function (event) {
		if (this == event.target) {
			$(this).toggleClass('clicked').children('ul').slideToggle(speed);
			$(this).siblings().removeClass('clicked').find("ul").slideUp(speed);
		}
	})
});

$(document).ready(function () {
	speed=400;
	$('#slide2 li.clicked').children('ul').show();
	$('#slide2 li:has(ul)').click(function (event) {
		if (this == event.target) {
			$(this).toggleClass('clicked').children('ul').slideToggle(speed);
			$(this).siblings().removeClass('clicked').find("ul").slideUp(speed);
		}
	})
});


