<xsl:stylesheet version="1.0" 
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                xmlns:html="http://www.w3.org/1999/xhtml">

<xsl:template match="/">
    <rss version="2.0">
        <channel>
            <title>Ill Will Press: Neurotically Yours</title>
            <link>http://illwillpress.com</link>
            <language>en-us</language>
            <generator>Custom sh+xsl scripts</generator>
            <webMaster>enigma@netninja.com</webMaster>
            
            <xsl:apply-templates select="/html:html/html:body/html:table//html:table//html:table//html:a"/>
            
        </channel>
    </rss>
</xsl:template>

<xsl:template match="html:a[html:img/@alt]">
    <xsl:variable name="title" select="substring-before(substring-after(html:img/@alt, '&quot;'), '&quot;')"/>
    <xsl:variable name="link" select="substring-before(substring-after(./@onclick, &quot;'&quot;), &quot;'&quot;)"/>
    <item>
    <title>
    <xsl:value-of select="$title"/>
    </title>
    <xsl:text>
    </xsl:text>    
    <link>
    <xsl:value-of select="$link"/>
    </link>
    <xsl:text>
    </xsl:text>    
    <guid>
    <xsl:value-of select="$link"/>
    </guid>
    <xsl:text>
    </xsl:text>    
    </item>
    <xsl:text>

    </xsl:text>
</xsl:template>

<xsl:template match="text()" />

</xsl:stylesheet>
