/* Registers the effect for all the "fancymenu" elements of the page */
window.addEvent('domready',function() {
	tablist = new TabList($E('table[class=tabsmenu]'));
	listitems = $ES('ul[class=sub]','tabsmenu');
	for (i=0;i<listitems.length;i++) {
	new SlideList(listitems[i], {
		/*transition: Fx.Transitions.backOut, */
		/*speed of bounce to next bubble*/
		transition: Fx.Transitions.linear,
		duration: 420
	});
	}
});
