$(document).ready(function(){
	$(function () {
		var scrollDiv = document.createElement("div");
		$(scrollDiv).attr("id", "gotop").html("&uarr;").appendTo("body");    
		$(window).scroll(function () {
			if ($(this).scrollTop() != 0) {
				$("#gotop").fadeIn();
			} else {
				$("#gotop").fadeOut();
			}
		});
		$("#gotop").click(function () {
			$("body,html").animate({
				scrollTop: 0
			},
			800);
		});
	});
});
