If you are not duplicating the info any where else on the site you can set up a blog with custom fields for each line. Or if you want to use data from an entry that will be parsed somewhere else on the site just add custom fields to the blog that you are already using.
Looking at the source for featured it looks like you will only need to add an image field.
<div id="fd-feature" class="clickable">
<a href="http://features.bizmore.com/images/frontdoor-features/1.jpg">http://features.bizmore.com/images/frontdoor-features/1.jpg</a>
<div id="fd-feature-copy">
<h4 class="fd-topic">Best Practice</h4>
<h2 class="fd-headline">Apple's 'Daily Download'</h2>
What keeps Apple Retail Stores humming? A quick all-hands briefing with staff every morning before the doors open.<a href="http://features.bizmore.com/2009/07/the-daily-download/class=fd-more">read more »</a>
</div>
</div>
*from http://features.bizmore.com/
you could code something to resemble:
<div id="fd-feature" class="clickable">
{featureimage}
<div id="fd-feature-copy">
<h4 class="fd-topic">{title}</h4>
<h2 class="fd-headline">{summary}</h2>
{body}
</div>
</div>
Another thing to do is to add a custom status to the blog, such as “slider” or “mainpage” that way you can pull only articles that you want to go to the main page and not every article that is entered into that blog.
Later,
Bryan