// JavaScript Document
$("document").ready(function() {
		$("table.department-table").each(function() {
			$(this).hide();
		});
		
		$("a.department-link").toggle(function() {
			$(this).next().show();
		}, function() {
			$(this).next().hide();				   
		});
		
		$("a.show-all").click(function(e) {
			$("a.department-link").each(function() {
				if($(this).next().css("display") == "none") {
					$(this).click();
				}
			});
			e.preventDefault();
		});
		
});