	function hidediv2() {
		if (document.getElementById) { // DOM3 = IE5, NS6
			document.getElementById('subnav2').style.visibility = 'hidden';
		} 
	}
	
	function showdiv2() {
		if (document.getElementById) { // DOM3 = IE5, NS6
			document.getElementById('subnav2').style.visibility = 'visible';
		} 
	}