// JavaScript Show Hide dropdown nav items

/* Start Show Nav */

function showNav(theNumber) 
		{
			document.getElementById('theDropNav' + theNumber).style.display = 'block';	
		}

/* End Show Nav */

/* Start Hide Nav */

function hideNav(theNumber) 
		{
			document.getElementById('theDropNav' + theNumber).style.display = 'none';	
		}

/* End Hide Nav */