function clean(element) {
  element.value="";
}

window.addEvent('domready',function(){
  var nS2 = new noobSlide({
	box: $('box'),
	items: [1,2,3],
	interval: 3000,
	size: 178,
	fxOptions: {
		duration: 1000,
		transition: Fx.Transitions.Bounce.easeOut,
		wait: false
	},
	addButtons: {
		previous: $('prev'),
		next: $('next')
	}
  });
});


