	function moveTop(){
		$("html,body").everyTime(10,'controlled',function(i) {
			window.scrollBy(0,-20);
		});

		$("html,body").everyTime(100,'stop',function(i) {
			var obj = new Object();
			obj.y = document.documentElement.scrollTop || document.body.scrollTop;
			if(obj.y == 0){
				$("html,body").stopTime('controlled');
			}
		});
		return false;
	}
	
$(document).ready(function(){
						   
	$('#page-top a').click(function(){
		$("html,body").everyTime(10,'controlled',function(i) {
			window.scrollBy(0,-20);
		});

		$("html,body").everyTime(100,'stop',function(i) {
			var obj = new Object();
			obj.y = document.documentElement.scrollTop || document.body.scrollTop;
			if(obj.y == 0){
				$("html,body").stopTime('controlled');
			}
		});
	
		return false;
	});
	

	
});
