$(document).ready(function() {

	$("#nav_left li:has(ul) > span a").toggle(function() {
		$(this).parent().parent().find("ul").show('fast');
	}, function() {
		$(this).parent().parent().find("ul").hide('fast');
	});

});

