function showHideCat(id) {
	var cat = document.getElementById(id);
	if(cat != null) {
		if(cat.style.display == "none")
		        cat.style.display = "block";
		else
		        cat.style.display = "none";
	}
}
