I didn't see this tip anywhere else, so sorry if I'm duplicating information!
I didn't like having a big long list of archive links on my main page but still wanted to access them all from the main page so I turned to JavaScript and found a nice solution: a popup menu of archives.
Try this in your Main Index template:
CODE
<div class="sidetitle">
Archives
</div>
<div class="side">
<form name="menu">
<select name="featuremenu" size="1" onChange="if(options[selectedIndex].value) window.location.href=(options[selectedIndex].value)">
<option selected>select monthly archive</option>
<option></option>
<MTArchiveList archive_type="Monthly">
<option value="<$MTArchiveLink$>"><$MTArchiveTitle$></option>
</MTArchiveList>
</select>
</form>
</div>