This table is in a template, I cannot directly edit the HTML and need the links to be in a different order, I need to move the "about" link below the "donate" link.
<table class="leftnav">
<tbody>
<tr>
<td class="headergraphica">
<img src=".../images/ta.gif">
</td>
</tr>
<tr>
<td class="leftlinkheading">Information</td>
</tr>
<tr>
<td class="leftlink"><a href="#">event information</a></td>
</tr>
<tr>
<td class="leftlink"><a href="#">about</a></td>
</tr>
<tr>
<td class="leftlink"><a href="#">participate</a></td>
</tr>
<tr>
<td class="leftlink"><a href="#">donate</a></td>
</tr>
</tbody>
</table>