document.write(""); document.write("
x
"); $(function(){ $(window).scroll(function(){ $(window).scrollTop()>0 ? $("#return-top").fadeIn('fast') : $("#return-top").fadeOut('fast'); }) $("#return-top").click(function(){ $("html,body").animate({scrollTop: 0},500); }) $("#toolbar li").hover(function(){ $(this).find(".item").stop(true,true).fadeIn("fast"); },function(){ $(this).find(".item").stop(true,true).fadeOut("fast"); }) $("#float-closed").click(function(){ $("#toolbar").hide(); $("#toolbar-show").show(); }) $("#toolbar-show").click(function(){ $("#toolbar").show(); $(this).hide(); }) })