{
Context context = TurbineVelocity.getContext( data );
String templateName = data.getTemplateInfo().getNavigationTemplate();
StringElement output = new StringElement();
output.setFilterState(false);
// Usually adds the leading slash, but make it sure.
if ((templateName.length() > 0) &&
(templateName.charAt(0) != '/'))
{
templateName = '/' + templateName;
}
output.addElement( TurbineVelocity
.handleRequest(context,"navigations" + templateName) );
return output;
}