Thanks, I found a partial solution with this:
<?php
$lastposts = get_posts('numberposts=3');
foreach($lastposts as $post) :
setup_postdata($post);
?>
<h4><a href="<?php the_permalink(); ?>" id="post-<?php the_ID(); ?>"><?php the_title(); ?></a></h4>
<?php the_excerpt(); ?>
<?php endforeach; ?>
I still need to go back and style the links now.
I think I can figure the rest from here.