// JavaScript Document

window.addEvent('domready',function(){

	// (mode: horizontal, using "onWalk" )
		var info1 = $('info1').set('opacity',1);
		var sampleObjectItems =[
			{title:''},
			{title:''},
			{title:''},
			{title:''},
			{title:''},
			{title:''},
			{title:''},
			{title:''},
			{title:''},
			{title:''},
			{title:''},
			{title:''},
			{title:''},
			{title:''}
		];
		var nS1 = new noobSlide({
			mode: 'horizontal',
			box: $('box1'),
			size: 582,
			items: sampleObjectItems,
			addButtons: {
				previous: $('prev1'),
				next: $('next1')
			},
			onWalk: function(currentItem){
				info1.empty();
				new Element('h4').set('html',''+currentItem.title).inject(info1);
			}
		});
		
		
		var status = {
		'true': 'open',
		'false': 'close'
	};
	
									});
