<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
	<xsl:output method="html" omit-xml-declaration="yes" cdata-section-elements="script"/>


	<xsl:template match="div[@class='result_title']">
		<ol>
		<xsl:apply-templates select="node()|@*"/>
		</ol>
	</xsl:template>	

	<xsl:template match="div[@class='result_title']">
			<li>
				<xsl:value-of select="a/@href"/><br />
				<xsl:copy-of select="following-sibling::div[1]" />
			</li>
	</xsl:template>

	<xsl:template match="node()|@*">
		<xsl:copy>
			<xsl:apply-templates select="div[@class='results']"/>
		</xsl:copy>
	</xsl:template>

</xsl:transform>