function gotoPageNewPath(selected)
{
	var category = "Dropdown";
	
        if (typeof selected == 'undefined') {
	   // grab the value out of the selected drop down item
	   selected = $("#DropDownNav").val();
           }
	// use that value as the id for the link in the hidden div, get the link and viola.
	if ($("#"+selected).parent(".trackabledd").attr("id") != "") {
		category = $("#"+selected).parent(".trackabledd").attr("id");
		}
	var action= $("#"+selected).attr("id");
	var label= window.location.pathname;
	pageTracker._trackEvent(category, action, label);
	top.location = $("#"+selected).attr("href");
}
