<script>
jQuery.noConflict();
</script>
<script>
jQuery(function () {
jQuery('#scrlBotm').click(function () {
jQuery('html, body').animate({ scrollTop: jQuery(document).height() }, 1500);
return false; });
jQuery('#scrlTop').click(function () {
jQuery('html, body').animate({ scrollTop: '0px' }, 1500);
return false; }); });
</script>