//JavaScript Document
//Place functions within this document
//Call functions within the dom ready in the html page


window.addEvent('domready',function(){
	
 
		//SAMPLE 4 (walk to item)
		var nS1 = new noobSlide({
			startItem: 0,					
			box: $('box'),
			items: $$('#box div'),
			size: 385,
			handles: $$('#handles4 li'),
			onWalk: function(currentItem,currentHandle){
				$('info4').set(currentItem.getFirst().innerHTML);
				this.handles.removeClass('active');
				currentHandle.addClass('active');
			}
		}); 
	});

