



Event.observe(window, 'load', function () {

	var anchorTop = new Element(
			'a', {
				'href':'#',
				'title':'Back to top',
				'style' : 'font-size: 10px'
			}
	);

	$$('h2').each( function (heading2) {
		$(heading2).appendChild(anchorTop).update(" top");
	});
});