window.addEvent('domready',function(){
 
		
 
			var nS2 = new noobSlide({
 
				box: $('box'),
 
				size: 851,
 
				items: [0, 1, 2, 3, 4, 5],
 
				interval: 6000,
 
				autoPlay: true,
 
				fxOptions: {
 
					duration: 1000,
 
					wait: false
 
				},
 
				addButtons: {
 
					previous: $('prev'),
 
					play: $('play'),
 
					stop: $('stop'),
 
					next: $('next')
 
				}
 
			});
 
	
 
		});
 
		
 
		var btn_status = 0;	// 0 = Play está visible
 
 
 
		function swap_buttons(){
 
			if(btn_status){
 
				document.getElementById('play').style.display = 'inline';
 
				document.getElementById('stop').style.display = 'none';
 
				btn_status = 0;
 
			} else {
 
				document.getElementById('play').style.display = 'none';
 
				document.getElementById('stop').style.display = 'inline';
 
				btn_status = 1;
 
			}
 
		}
 
		
 
		function swap_to_play(){
 
			document.getElementById('play').style.display = 'inline';
 
			document.getElementById('stop').style.display = 'none';
 
			btn_status = 0;
 
		}

