MediaWiki:Common.js/ftoc.js
From The Official Visionaire Studio: Adventure Game Engine Wiki
$(document).ready(function() {
$('.ftoc_content').slimScroll({
color: '#ff9900',
height: '390',
railVisible: true,
railOpacity: 0.2,
allowPageScroll: false,
alwaysVisible: true,
disableFadeOut: true
});
$(".ftoc").hover(function() {
$(".ftoc").stop().animate({left:'0px'}, 250, function() {
$(".ftoc_content").stop().animate({left:'5px'}, 500);
});
}, function() {
$(".ftoc").stop().animate({left:'-250px'}, 250);
$(".ftoc_content").stop().animate({left:'-500px'}, 250);
});
});