function navHandler(event, nav)
{
	//window.alert(event);
	
	if (event.type == "click")
	{
		//window.alert(nav + '_DIV');
		if (nav == "calendar")
		{
			location.href='/calendar.amp';
		}
		else if (nav == "poh")
		{
			location.href="http://www.paradehome.com";
		}
		else if (nav == "green_building")
		{
			location.href="http://www.southwestgreenbuild.com";
		}
		else
		{
			//window.alert(event.type);
			location.href="/?MAIN_SECTION=" + nav;	
		}
	}
	else if (event.type == "mouseout")
	{
		//window.alert('Mouse Out');
		document.getElementById(nav + '_DIV').style.display = 'none';
	}
	else if (event.type == "mouseover")
	{
		document.getElementById(nav + '_DIV').style.display = 'block';
		//window.alert('I was NOT clicked');
		
	}
	
}