$(document).ready(function() {
	$('#scroll-buttons').show();
	$('#scroll-top').click(function(){
		$('html,body').scrollTop(0);
	});
	$('#scroll-bottom').click(function(){
		$('html,body').scrollTop($("body").height());
	});
});
