window.addEvent('domready',function(){
	
	
		//SAMPLE 5 (mode: vertical, using "onWalk" )
		var info5 = $('info5').set('opacity',0.9);
		var sampleObjectItems =[
			{title:'<a href="http://beetnikaesthetics.com/shop/index.php?act=viewProd&productId=67">Alien Peace T-Shirt</a>', autor:'<a href="http://beetnikaesthetics.com/shop/index.php?act=viewProd&productId=67">Now Available in the SHOP</a>'},
			{title:'<a href="http://beetnikaesthetics.com/shop/">Beetnik Economic Bailout</a>', autor:'<a href="http://beetnikaesthetics.com/shop/">Save money on t-shirts!</a>'}
		];
		var nS5 = new noobSlide({
			autoPlay: true,
			mode: 'vertical',
			box: $('box5'),
			size: 300,
			interval: 3000,
			items: sampleObjectItems,
			addButtons: {},
			onWalk: function(currentItem){
				info5.empty();
				new Element('h1').set('html',currentItem.title).inject(info5);
				new Element('h2').set('html',currentItem.autor).inject(info5);
			}
		});

	});