function selectNav()
{
	path = window.location.pathname;

	if (path.match(/articles\/aipc-foodservice/) || path.match(/articles\/social-responsibility/)) 
	{ 
		$("#foodserviceNav").addClass("current");
	}
	else if (path.match(/our-brands/) || path.match(/productViews/) || path.match(/products/) ) 
	{ 
		$("#brandsNav").addClass("current");
	}
	else if (path.match(/articles\/cooking-tips/) || path.match(/articles\/handling-information/) || path.match(/articles\/cooling-pasta/)  || path.match(/articles\/storing-pasta/) || path.match(/articles\/reheating-pasta/)  || path.match(/articles\/cooking-regions-of-italy/)) 
	{ 
		$("#cookingNav").addClass("current");
	}
	else if (path.match(/recipe/)) 
	{ 
		$("#recipesNav").addClass("current");
	}
	else if ( path == contextPath )
	{
		$("#homeNav").addClass("current");
	}
	else if (path.match(/pdflib/)) 
	{ 
		$("#libraryNav").addClass("current");
	}
	else if (path.match(/foodserviceContacts/) || path.match(/contact/)) 
	{ 
		$("#contactNav").addClass("current");
	}
}
