window.addEvent('domready', function() {

	//scroller
	new SmoothScroll({duration:1800, transition:Fx.Transitions.quartOut});
	
	//alternate table rows
	$$('table.order tr','table.matrix tr').each(function(el, i) {
		el.addClass((i % 2) ? 'spec' : 'odd');
	});

});