window.addEvent('domready',function(){
	var nS5 = new noobSlide({
		box: $('pad_slideshow'),
		size: 362,
		//items: sampleObjectItems,
		items: [0,1,2],
		addButtons: {
			previous: $('ns_prev'),
			next: $('ns_next')
		},
		autoPlay: 'true',
		interval: 5000
	});
	
	$('pad_slideshow').addEvent('mouseover',function(){
		nS5.stop();
	});
	$('pad_slideshow').addEvent('mouseout',function(){
		nS5.play(nS5.interval,"next",'false');
	});
});
