window.addEvent('domready',function(){
		var handles = $$('#handles span');
		var nS = new noobSlide({
			box: $('rssbox'),
			items: $$('#rssbox h3'),
			size: 540,
			autoPlay: true,
			handles: $$('#handles span'),
			addButtons: {play: $('play'), stop: $('stop'), playback: $('playback') },
			onWalk: function(currentItem,currentHandle){
				$$(this.handles,handles).removeClass('active');
				$$(currentHandle,handles[this.currentIndex]).addClass('active');
			}
		});
		nS.walk(0,false,true);
});