Right now all the news links points to the top of the page, so people have to scroll to get to the earlier dates. You can have the links point to certain spots in that page.
http://www.w3schools.com/html/html_links.asp
(they use <a name="name"> but I think this is being phased out of HTML5, so the below should work)
You set the spots by setting up a 'span' with an 'id' name. I've used the date and a key word, so you can remember what it was.
<span id="20110605Spielberg">June 5, 2011: Steven Spielberg Vows Never to Digitally Alter Old Films, Says Lucas Can't "Let Sleeping Dogs Lie"</span>
or
<span id="20110605Spielberg">June 5, 2011</span>: Steven Spielberg Vows Never to Digitally Alter Old Films, Says Lucas Can't "Let Sleeping Dogs Lie"
then your link from the main page would look like this:
<a href="http://savestarwars.com/news.html#20110605Spielberg">
Try one, if it works great, otherwise i'll figure out what's missing.