// JavaScript Document
window.addEvent('domready',function(){
		

		//SAMPLE 5 (mode: vertical, using "onWalk" )
		var info5 = $('info5').set('opacity',0.5);
		var sampleObjectItems =[
			{title:'Feed Mills', autor:'Scotch Marine', date:'Gas/Oil'},
			{title:'Bottling Companies', autor:'Firetube Boiler', date:'Gas'},
			{title:'Oil Drilling', autor:'Scotch Marine', date:'Oil'},
			{title:'Pharmaceutical', autor:'Firetube Boiler', date:'Gas'},
			{title:'Research', autor:'Scotch Marine', date:'Gas/Oil'},
			{title:'Schools', autor:'Condensing Boilers', date:'Gas'},
			{title:'Hospitals', autor:'Scotch Marine', date:'Gas/Oil'},
			{title:'Hotels', autor:'Firetube Boiler', date:'Gas'}
		];	
		var nS5 = new noobSlide({
			mode: 'vertical',
			box: $('box5'),
			size: 280,
					autoPlay: true,
					interval: 3000,
			
			items: sampleObjectItems,
			
			addButtons: {
				previous: $('prev5'),
				play: $('play5'),
				stop: $('stop5'),
				next: $('next5')
			},
			onWalk: function(currentItem){
				info5.empty();
			
				new Element('h4').set('html','<a> .</a>','<b>Applications</b>: '+currentItem.title).inject(info5);
				new Element('p').set('html','<b>Products</b>: '+currentItem.autor+' &nbsp; &nbsp; <b>Fuel</b>: '+currentItem.date).inject(info5);
			}
		});

		
	});
