<!--Кнопки вверх и вниз-->
<a style="position: fixed; top: 400px; right: 60px; cursor: pointer; background-color: transparent !important;" id="Go_Top"><img src="https://forumstatic.ru/files/001a/69/b4/65733.png"></a>
<a style="position: fixed; top: 455px; right: 45px; cursor: pointer; background-color: transparent !important;" id="Go_Bottom"><img src="https://forumstatic.ru/files/001a/69/b4/83574.png"></a>
<script type="text/javascript">
jQuery(function(){
$("#Go_Top").hide().removeAttr("href");
if ($(window).scrollTop()>="250") $("#Go_Top").fadeIn("slow")
$(window).scroll(function(){
if ($(window).scrollTop()<="250") $("#Go_Top").fadeOut("slow")
else $("#Go_Top").fadeIn("slow")
});
$("#Go_Bottom").hide().removeAttr("href");
if ($(window).scrollTop()<=$(document).height()-"999") $("#Go_Bottom").fadeIn("slow")
$(window).scroll(function(){
if ($(window).scrollTop()>=$(document).height()-"999") $("#Go_Bottom").fadeOut("slow")
else $("#Go_Bottom").fadeIn("slow")
});
$("#Go_Top").click(function(){
$("html, body").animate({scrollTop:0},"slow")
})
$("#Go_Bottom").click(function(){
$("html, body").animate({scrollTop:$(document).height()},"slow")
})
});
</script>
<!-- конец -->