function show(type) {
	if ($("#links_" + type).is(":hidden")) {
		$("#links_" + type).slideDown("slow");
	}
	else { $("#links_" + type).hide(); }
}
