/**
 * 
 * @version 
 * @author 
 */

$(function(){
	$('#console').hide();
	$.autopager({
    	// a selector that matches a element of next page link
    	nextLink: '#next a',
    	// a selector that matches page content
    	pageElement: '#listbody'
	});
	
	$('#pagetop a').click(function(){
		pageTop();
		return false;
	});
});

function pageTop(){
	var y = document.documentElement.scrollTop || document.body.scrollTop || 0;

	window.scrollTo(0, Math.floor(y / 2));

	if (y > 0) {
		window.setTimeout("pageTop()", 50);
	}
}
