window.addEvent('domready',function(){

	//Box 1
	var info = $('info').set('opacity',0.6);
	var sampleObjectItems =[	
		{title:'Tailgate Tote', link:'https://shop.nd.edu/C21688_ustores/web/product_detail.jsp?PRODUCTID=845&SINGLESTORE=true'},
		{title:'Women\'s Ice Hockey T-shirt', link:'https://shop.nd.edu/C21688_ustores/web/product_detail.jsp?PRODUCTID=831&SINGLESTORE=true'},
		{title:'Golden Dome Pendant with Recessed Lettering', link:'https://shop.nd.edu/C21688_ustores/web/product_detail.jsp?PRODUCTID=388&SINGLESTORE=true'},
		{title:'Notre Dame Law Hooded Sweatshirt', link:'https://shop.nd.edu/C21688_ustores/web/product_detail.jsp?PRODUCTID=1485&SINGLESTORE=true'},
		{title:'Memoirs of Captain Rock', link:'https://shop.nd.edu/C21688_ustores/web/product_detail.jsp?PRODUCTID=199&SINGLESTORE=true'},
		{title:'Waterski Club T-Shirt', link:'https://shop.nd.edu/C21688_ustores/web/product_detail.jsp?PRODUCTID=1408&SINGLESTORE=true'},
		{title:'2009 Christmas Ornament - "God, Country, Notre Dame Memorial Door"', link:'https://shop.nd.edu/C21688_ustores/web/product_detail.jsp?PRODUCTID=1475&SINGLESTORE=true'},
		{title:'2009 University Commencement Ceremony and Conferring of Degrees', link:'https://shop.nd.edu/C21688_ustores/web/product_detail.jsp?PRODUCTID=75&SINGLESTORE=true'}
		];
	var nS = new noobSlide({
		mode: 'vertical',
		box: $('box'),
		size: 120,
		items: sampleObjectItems,
		interval: 7000,
		autoPlay: true,
		fxOptions: {
			duration: 2000,
			transition: Fx.Transitions.Back.easeOut,
			wait: false
		},
		onWalk: function(currentItem){
			info.empty();
			new Element('h3').set('html','<a target="_blank" href="'+currentItem.link+'">'+currentItem.title+'</a>').inject(info);
		}
	});

});
