<script type="text/javascript" src="../../../Resources/Shared/scripts/jquery/jquery.min.js" />
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery("<%= normal.clientID.tostring %>").bind("mouseover", showHovering);
jQuery("<%= normal.clientID.tostring %>").bind("mouseleave", showNormal);
});
function showHovering(evt) {
jQuery("<%= normal.clientID.tostring %>").animate({ 'opacity': '0' }, 500);
jQuery("<%= hover.clientID.tostring %>").animate({ 'opacity': '1' }, 500);
}
function showNormal(evt) {
jQuery("<%= normal.clientID.tostring %>").animate({ 'opacity': '1' }, 500);
jQuery("<%= hover.clientID.tostring %>").animate({ 'opacity': '0' }, 500);
}
</script>
|