

window.addEvent('domready',function(){
		var s1 = new noobSlide({
			box: $('slideContainer'),
			items: $$('#slideWrapper #slideContainer div.slideContent'),
			size: 569,
			handles: $$('#slideNav span'),
		onWalk: function(currentItem,currentHandle){
				this.handles.removeClass('active');
				currentHandle.addClass('active');
			},
			addButtons: {
				next: $('slideNext')
			},  
/*			fxOptions: {
				duration: 1500,
				transition: Fx.Transitions.Bounce.easeOut,
				wait: false
			},*/


		});
	});

