<?xml version="1.0" standalone="yes" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:template match="/">
    	<xsl:for-each select="/root/imagelink">
		<div style="float:left;margin:3px;height:125px;">
		<a>
			<xsl:attribute name="href">
			    <xsl:value-of select="target"/>
			</xsl:attribute>
			<xsl:attribute name="target">_blank</xsl:attribute>
			<img>
			    <xsl:attribute name="src">
			        <xsl:value-of select="small"/>
			    </xsl:attribute>
			    <xsl:attribute name="border">0</xsl:attribute>
			</img>
		</a>
		</div>
	</xsl:for-each>
    </xsl:template>
</xsl:stylesheet>


