

	function set_links() {
		$$('a').each(
			function(e)
			{
				if (e.rel == 'lightbox-graphic')	e.rel		= 'lightbox[graphic]';
				if (e.rel == 'lightbox-web')		e.rel		= 'lightbox[web]';
				if (e.rel == 'ext') 				e.target	= '_blank';
			}
		);
	}


	window.addEvent('domready', function() {
		new SmoothScroll(
			{
				transition: Fx.Transitions.cubicOut
			}
		);

		set_links();
	});

