$(function () {	
	$('#menu li span').click(function () {
		$(this).parent('li').find('ul').slideToggle(200);
	});
});
