$(function() {
	var scroll_link = $(".footer-element .top");
	$(window).scroll(function(){
			if ($(this).scrollTop() > 200) {
					scroll_link.fadeIn(800);
			} else {
					scroll_link.fadeOut(800);
			}
	});
	scroll_link.click(function(e) {
		$('html, body').animate({scrollTop:0}, 'slow');
		e.preventDefault();
	});
});

