I am not much of a coder - more of a code lifter, so, I ask for your patience and forgiveness...
I am using the jquery library to do a simple fade in of an image when the page loads:
<script type="text/javascript">
$(document).ready(function(){
$("#picz").bind("load", function () { $(this).fadeIn(600); });
});
</script>
Works as expected: the left navigation has three working links, entrance, great room, dining room. If you click on them in that order, the images fade in nicely (in IE and FireFox). However, after you click on the "dining room" link, then click back on "great room", the image reamins hidden. That is the problem. If you refresh the page, it works fine again, for that page.
Any ideas? Perhaps this is an elementary problem and a solution is readily avaialble - hope so...