<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
							  xmlns:saxon="http://icl.com/saxon"
							  xmlns:func="http://exslt.org/functions">


							  
							  
<xsl:template match="/">
  <html>
<body>
<div>
	<ul class="smallBullets">
	<xsl:for-each select="/rss/channel/item">
		
		 <xsl:if test="position() &lt; '6'"> 
			<xsl:variable name="link" select="link"/>
			<li><a href="{$link}" target="_new" class="link"><xsl:value-of select="title"/></a></li>
		 </xsl:if>
	</xsl:for-each>
	</ul>
</div>

</body>
</html>
</xsl:template>
</xsl:stylesheet>