function power() {
h = $(window).height();
t = $(document).scrollTop();
if(t > h) {
$('#gotop').show();
}
}
$(document).ready(function(e) {
power();
$('#gotop').click(function(){
$(document).scrollTop(0);
})
});
$(window).scroll(function(e){
power();
})