
window.addEvent('domready',function(){
	var hs8 = new noobSlide({
		box: $('mootabs_box'),
		startItem: 1,
		autoPlay: true,
		interval: 5000,
		items: $ES('div.mootabs_inner', 'mootabs_box'),
		size: 470,
				fxOptions: {
			duration: 1000,
			transition: Fx.Transitions.Bounce.easeOut,
			wait: false
		},
				mode: 'horizontal',
		handles: $ES('span','mootabs_handles4'),
		onWalk: function(currentItem,currentHandle){
			$$(this.handles,mootabs_handles4).removeClass('active');
			$$(currentHandle,mootabs_handles4[this.currentIndex]).addClass('active');
		}
	});
	var mootabs_handles4 = $ES('span','mootabs_handles4');
	hs8.addHandleButtons(mootabs_handles4);
	hs8.walk(0)
});

