$(document).ready(function() {

	if($('#to-top').length>0 && $(window).width()>1070) {
		var toTopButton = $('#to-top');
		if($(window).scrollTop() != "0") { 
			toTopButton.stop().animate({bottom: '10px'}, 150); 
		}
		$(window).scroll(
			function()
			{
				if($(window).scrollTop() == "0") { 
					toTopButton.stop().animate({bottom: '-100px'}, 100);
				} else {
					toTopButton.stop().animate({bottom: '10px'}, 150);
				}
			});
		toTopButton.click(function()
		{ 
			$("html, body").animate( { scrollTop: 0 }, "slow");
			return false; 
		});
	}
});
