function selectNav()
{
	path = window.location.pathname;

	if (path.match(/pasta-lensi-story/)) 
	{ 
		$("#storyNav").addClass("current");
	}
	else if (path.match(/larte-della-pasta/)) 
	{ 
		$("#artNav").addClass("current");
	}
	else if (path.match(/productViews/) || path.match(/products/)) 
	{ 
		$("#shapesNav").addClass("current");
	}
	else if (path.match(/eat-well/)) 
	{ 
		$("#eatNav").addClass("current");
	}
	else if (path.match(/recipes/)) 
	{ 
		$("#recipesNav").addClass("current");
	}
	else if (path.match(/find-pasta-lensi/)) 
	{ 
		$("#findNav").addClass("current");
	}
	else if ( path == contextPath )
	{
		$("#homeNav").addClass("current");
	}

}
