Template:Toc
From The Official Visionaire Studio: Adventure Game Engine Wiki
Generates a floating Table of contents menu in a fixed position on the left hand side of the screen.
<script type="text/javascript"> $(".ftoc").hover(function() {
$(this).animate({ left : '0px' }, 1000);
}, function() {
$(this).animate({ left : '-150px' }, 1000); }
}); </script>