window.addEvent('domready',function(){


		var startItem = 1; // First item to be displayed
		var nS6 = new noobSlide({
			mode: 'horizontal',
			box: $('featured-post'),
			items: [0,1,2,3,4],
			size: 983,
			handles: $$('#carousel-handles div'),
			handle_event: 'mouseenter',
			button_event: 'click',
			autoPlay: true,
			onWalk: function(currentItem,currentHandle){				
				this.handles.set('opacity',0.3);
				currentHandle.set('opacity',1);
			},
		});
		//walk to next item
		nS6.next();
		


	});
