I trying attempting to add the mouseover to my xslt .. thus...
Code:
<td><a href="#">
<img border="0">
<xsl:attribute name="onmouseover">
<xsl:value-of select="/Properties/Data/Datum[@ID='SalesImageSourceOver']"/>
</xsl:attribute>
<xsl:attribute name="onmouseout">
<xsl:value-of select="/Properties/Data/Datum[@ID='SalesImageSource']"/>
</xsl:attribute>
<xsl:attribute name="src">
<xsl:value-of select="/Properties/Data/Datum[@ID='SalesImageSource']"/>
</xsl:attribute>
</img></a>
</td>
I must be missing something,because, when I hover over the default image nothing happens.