$(document).ready(function() {
	$("#subdir > #listings").hide();
	$("#toggle > a").click(function() {
		$("#subdir > #listings").slideToggle(1000);
	});
});