<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

 <xsl:template match="rss">
  <xsl:apply-templates select="channel"/>
 </xsl:template>
 
 <xsl:template match="channel">
   <table class="wpc_table" width="100%" cellpadding="0" cellspacing="0">
	<xsl:apply-templates select="item"/>
</table>
 </xsl:template>
     
 <xsl:template match="item">
 <xsl:if test="position()&lt;6">
	<tr>
	  <td valign="top"  style="padding-top:5px;padding-left:0px" >
	    <li ><p class="wpcp"><a class="wpca" target="_new" >
		     <xsl:apply-templates select="link"/>
	     <xsl:value-of select="title"/>
	   </a></p></li>
		</td>
		</tr>
	</xsl:if>	
 </xsl:template>

 <xsl:template match="link">
   <xsl:attribute name="href"><xsl:value-of select="."/></xsl:attribute>
 </xsl:template>

</xsl:stylesheet>



