document.observe('dom:loaded', function() {
	$$('.backtotop[rel]').invoke('observe', 'click', function(event) {
		event.element().blur();
		event.stop();
		if (this.rel && $(this.rel)) {
		if (Prototype.Browser.IE6) $(this.rel).scrollTo();
		else new Effect.ScrollTo(this.rel, { duration: 0.8 });
		}
	})
});
/* digiwork */