<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">

<html>
<body>

<div id="banner">
</div>

<div id="staffinfo">
<xsl:for-each select="StaffInformation">
	<table>
	<xsl:for-each select="StaffInformation/NameDetails">
	<tr>
		<td colspan="2"><xsl:value-of select="Title"/> <xsl:value-of select="FirstName"/> <xsl:value-of select="Surname"/></td>
	</tr>
	<tr>
		<td colspan="2"><xsl:value-of select="Position"/></td>
	</tr>
	</xsl:for-each>
	<xsl:for-each select="StaffInformation/ContactDetails">
	<tr>
		<td>Phone:</td>
		<td><xsl:value-of select="Phone"/></td>
	</tr>
	<tr>
		<td>Fax:</td>
		<td><xsl:value-of select="Fax"/></td>
	</tr>
	<tr>
		<td>Room:</td>
		<td><xsl:value-of select="Room"/></td>
	</tr>
	<tr>
		<td>Email:</td>
		<td><xsl:value-of select="Email"/></td>
	</tr>
	</xsl:for-each>
	</table>
	
	<h2>General Information</h2>
	<p><xsl:value-of select="GeneralInformation"/></p>
	
	<h2>Research Interests</h2>
	<p><xsl:value-of select="ResearchInterests"/></p>
	

</xsl:for-each>
</div>

</body>
</html>

</xsl:template>
</xsl:stylesheet>