// jQuery code
jQuery(document).ready(function($){
		$('#top').click(function(){		//µã»÷·µ»Ø¶¥²¿
				$('html,body').animate({scrollTop:0},800);					
			return false;
		});
	})