$(document).ready(function() {
	$("#nav>ul>li").each(function() {
		if ($(this).children("ul").size() > 0) {
			$(this).children("a").eq(0).click(function(e) {
				e.preventDefault();
				$(this).parents("li").children("ul").eq(0).toggle();
			});
		}
	});
});