
// Page Top
// (onclick="jumpToPageTop(event);return false;")
// (<xxx class="pagetop"><a href="#pagetop"></a></xxx>)
// ----------------------------------------------------------------------- //

$(function(){
	$('.pagetop a').click(function(event){
		jumpToPageTop(event);
		return false;
	});
})

function jumpToPageTop(e) {
	UAGENT = navigator.userAgent.toUpperCase();
	if (UAGENT.indexOf("MSIE") >=0) {
		pos = event.y;
	} else {
		pos = e.pageY;
	}
	pageScroll(pos);
}

function pageScroll(posi) {
	dist = posi / 6;
	nPos = parseInt(posi - dist);
	scrollTo(0,nPos);
	if (nPos > 0) {
		setTimeout("pageScroll(nPos)",10);
	}
}





// headline
// ----------------------------------------------------------------------- //

$(function(){
	$('dl.headline dt:last').addClass("last");
	$('dl.headline dd:last').addClass("last");
})

