// JavaScript Document


	// Positions the #scrolltop-button dynamically
	$(window).scroll(function () { 
	
		var offset = 180+parseInt($(document).scrollTop())+"px";  // 180px + derzeitige scrollposition + px
		$("#scrolltop").animate({top:offset},{duration:400,queue:false});
	
	});
	
	$(document).ready(function(){
		
		$("#scrolltop").css("bottom",""); // Turn "Without-JS"-Style off
		$("#scrolltop").css("top","180px"); // Turn "Without-JS"-Style off

		// Scrolls to top of the page with jquerys animate()
		
		$('#scrolltop').click(function() {
				$('html, body').animate({scrollTop:0}, 400);
				return false;
		});

	});

