function toggle_list(){	the_div = document.getElementById('cat_list');	the_hide_link = document.getElementById('hide_list_link');	the_hide_link2 = document.getElementById('hide_list_link2');	the_link = document.getElementById("show_list_link");		if(the_div.style.display != "inline"){		the_div.style.display = "inline";		the_hide_link.style.display = "inline";		the_hide_link2.style.display = "inline";		the_link.style.display = "none";	}else{		the_div.style.display = "none";		the_hide_link.style.display = "none";		the_hide_link2.style.display = "none";		the_link.style.display = "inline";	}}
