<?xml version="1.0" encoding="iso-8859-9"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<xsl:template match="/">

<table class="yazi" cellpadding="0" cellspacing="0">

<xsl:for-each select="rss/channel/item">
<tr onMouseover="this.className='verilinkhover'" onMouseout="this.className='verilink'">
<td style="padding:2px 2px 0px 5px" valign="top"><b>» </b></td>
<td style="width:100%">
<a target="_blank" class="link">
<xsl:attribute name="title"><xsl:value-of select="description" /></xsl:attribute>
<xsl:attribute name="href"><xsl:value-of select="link" /></xsl:attribute><xsl:value-of select="title" /></a>
</td>
</tr>
</xsl:for-each>

</table>

</xsl:template>
</xsl:stylesheet>
