I have this velocity code for a simple menu using the Manage Navigation feature:
<div id="header" class="navstrip">
#foreach( $navItem in $navItems )
<a href="$navItem.URL">$navItem.Title</a> |
#end
</div>
I would like to give the last menu link a class of "last". What would the conditional be for that?