window.addEvent('domready',function(){
	var nS = new noobSlide({
		box: $('contenido_banner'),
		items: $$('.fotogramas'),
		interval: 3000,
		autoPlay: true,
		size: 781,
		handles: $$('#div_handles a'),
		addButtons: {play: $('play'), stop: $('stop')},
		onWalk: function(currentItem,currentHandle){
			$$(this.handles).removeClass('active');
			$$(currentHandle).addClass('active');
		}
//		fxOptions: {
//			duration: 1000,
//			transition: Fx.Transitions.Quad.easeIn /*Quad.easeOut*/,
//			wait: false
//		}
	});
	nS.walk(0,false,true);
});