	window.addEvent('domready',function(){
		//SAMPLE 2 (transition: Bounce.easeOut)
		var random = $random(0, 4);
		var nS1 = new noobSlide({
			box: $('mainImage'),
			items: [0,1,2,3,4],
			startItem: random,
			size: 720,
			interval: 3000,
			fxOptions: {
				duration: 300,
				transition: Fx.Transitions.Bounce.easeOut,
				wait: false
			},
			addButtons: {
				previous: $('prev1'),
				//play: $('play1'),
				//stop: $('stop1'),
				next: $('next1')
			}
		});
	});