// JavaScript Document

function toggleIt(el) {
	el.style.visibility = (el.style.visibility == "visible") ? "hidden" : "visible";	
}
