// JavaScript Document sample 4 noomslide

	window.addEvent('domready',function(){
		//SAMPLE 4 (walk to item)
		var nS2 = new noobSlide({
			box: $('box4'),
			items: [0,1,2,3,4],
			interval: 3000,
			size:517,
			fxOptions: {
				duration: 1000,
				transition: Fx.Transitions.Bounce.easeOut,
				wait: false
			},
			addButtons: {
				next: $('next1')
			}
		});

	});
	window.addEvent('domready',function(){
	$$('#leftcol li a').each(function(el) {    
	var fx = new Fx.Morph(el,{ duration:300, link:'cancel' });  
	el.addEvents({  
		'mouseenter': function() { fx.start({ 'padding-left': 40, 'width':180 }); },  
		'mouseleave': function() { fx.start({ 'padding-left': 20, 'width':200 }); }  
	});  
});
	
	});
	
