window.addEvent('domready',function(){

	//SAMPLE 5 (mode: vertical, using "onWalk" )
	var info5 = $('info5').set('opacity',0.6);
	var sampleObjectItems = [
		{title:'Welcome to Prague!', link:'./'},
		{title:'Let our driver take you ...', link:'transportation'},
		{title:'... to a business meeting ...', link:'transportation'},
		{title:'... to a recreation spot ...', link:'trips'},
		{title:'... or to experience the unordinary ...', link:'trips'},
		{title:'... in beautiful Czech towns.', link:'trips'},
		{title:'See the oldest monuments of Prague.', link:'guides'},
		{title:'Enjoy your dinner ...', link:'restaurants'},
		{title:'... in traditional Czech restaurant ...', link:'restaurants'},
		{title:'... in the very centre of Prague ...', link:'restaurants'},
		{title:'... or during our catering.', link:'catering'},
		{title:'We\'ll arrange a party ...', link:'catering'},
		{title:'... and book accomodation.', link:'hotels'},
		{title:'We are at Your service.', link:'./'}
	];
	var nS5 = new noobSlide({
		mode: 'vertical',
		box: $('box5'),
		size: 180,
		interval: 3000,
		autoPlay: true,
		items: sampleObjectItems,
		addButtons: {
			previous: $('prev5'),
			play: $('play5'),
			stop: $('stop5'),
			next: $('next5')
		},
		onWalk: function(currentItem){
			info5.empty();
			//new Element('h4').set('html','<a href="'+currentItem.link+'">'+currentItem.title+'</a>').inject(info5);
			new Element('h4').set('html','<a href="'+currentItem.link+'"><span>'+currentItem.title+'</span></a>').inject(info5);
			//new Element('p').set('html','<b>Autor</b>: '+currentItem.autor+' &nbsp; &nbsp; <b>Date</b>: '+currentItem.date).inject(info5);
		}
	});

});

