Youtube RSS

I have this template to display my feed:

<table>
{* Show the feed title as a header in the first row of the table *}
<tr><th style="font-size: 24px;">{$feedtitle}</th></tr>
{* loop through all items and add date, link, title and description in the follwing section *}
{section name=x loop=$items}
<tr><td class="rssitem">
<strong><a href="{$items[x].link}" target="_blank">{$items[x].title}</a></strong><br>
{$items[x].description}
</td></tr>
{/section}
</table>

The youtube rss feed displays all of the information from the description part of the feed:

<description>
<img src="http://sjl-static15.sjl.youtube.com/vi/wUIjnzFCGcE/2.jpg" align="right" border="0" width="120" height="90" vspace="4" hspace="4" />
<p>
Nintendo Wii trailer that was shown at E3 2006.
</p>
<p>
Author: <a href="http://youtube.com/profile?user=peestandingup">peestandingup</a><br/>
Keywords: <a href="/results?search=Wii">Wii</a><br/>
Added: May 9, 2006<br/>
</p>
</description>

My question is:

How do I get it to JUST display the image and title and not all of the description and keywords?

Here is the feed url:
http://www.youtube.com/rss/tag/wii.rss

Thanks!