function gotoPageNewPath()
{
	// grab the value out of the seleted drop down item
	var selected = $("#DropDownNav").val();
	// use that value as the id for the link in the hidden div, get the link and viola.	
	location = $("#"+selected).attr("href");

}
