// Mootools related
window.addEvent('domready', function() {

	// NOOBSLIDE OREA/MACD
	if ( $('box4') ) {
		var nS4 = new noobSlide({
			box: $('box4'),
			items: $$('#box4 .box4_inner'),
			size: 940,
			handles: $$('#handles4 span'),
			autoPlay: true,
			onWalk: function(currentItem,currentHandle) {
				//$('box4').set('html',currentItem.getFirst().innerHTML);
				this.handles.removeClass('active');
				currentHandle.addClass('active');
			}
		});
	}
	
});
