
function scroll2(id)
{

	new Effect.ScrollTo(id);
	document.getElementsByClassName('totop').each(Element.hide);
	// display return link
	var toplink = id+'-totop';
	Element.show(toplink);


}

function scrollback(linkid){
	// foreach class='toplink'
	//	['desc1', 'desc2', 'desc3'].each(Element.hide); 
	
	Element.hide(linkid);
	new Effect.ScrollTo('top');
}