window.addEvent('domready',function(){

		//SAMPLE 5 (mode: vertical, using "onWalk" )
		var info5 = $('info5').set('opacity',0.6);
		var sampleObjectItems =[
		{title:'Women\'s Ice Hockey T-shirt', link:'https://shop.nd.edu/C21688_ustores/web/product_detail.jsp?PRODUCTID=831&SINGLESTORE=true',storeurl:'https://shop.nd.edu/C21688_ustores/web/store_main.jsp?STOREID=8&SINGLESTORE=true', store:'Student Shop'},
		{title:'Golden Dome Pendant with Recessed Lettering', link:'https://shop.nd.edu/C21688_ustores/web/product_detail.jsp?PRODUCTID=388&SINGLESTORE=true',storeurl:'https://shop.nd.edu/C21688_ustores/web/store_main.jsp?STOREID=9&SINGLESTORE=true', store:'Notre Dame Alumni Association Official Store'},
		{title:'Notre Dame Law Hooded Sweatshirt', link:'https://shop.nd.edu/C21688_ustores/web/product_detail.jsp?PRODUCTID=1485&SINGLESTORE=true',storeurl:'https://shop.nd.edu/C21688_ustores/web/store_main.jsp?STOREID=8&SINGLESTORE=true', store:'Student Shop'},
		{title:'Memoirs of Captain Rock', link:'https://shop.nd.edu/C21688_ustores/web/product_detail.jsp?PRODUCTID=199&SINGLESTORE=true',storeurl:'https://shop.nd.edu/C21688_ustores/web/store_main.jsp?STOREID=10&SINGLESTORE=true', store:'Field Day Books'},
		{title:'Waterski Club T-Shirt', link:'https://shop.nd.edu/C21688_ustores/web/product_detail.jsp?PRODUCTID=1408&SINGLESTORE=true',storeurl:'https://shop.nd.edu/C21688_ustores/web/store_main.jsp?STOREID=8&SINGLESTORE=true', store:'Student Shop'},
		{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',storeurl:'https://shop.nd.edu/C21688_ustores/web/store_main.jsp?STOREID=9&SINGLESTORE=true', store:'Notre Dame Alumni Association Official Store'},		
		{title:'2009 University Commencement Ceremony and Conferring of Degrees', link:'https://shop.nd.edu/C21688_ustores/web/product_detail.jsp?PRODUCTID=75&SINGLESTORE=true',storeurl:'https://shop.nd.edu/C21688_ustores/web/store_main.jsp?STOREID=7&SINGLESTORE=true', store:'Commencement Videos'},
		{title:'Gridiron Goblins TM Volume 1', link:'https://shop.nd.edu/C21688_ustores/web/product_detail.jsp?PRODUCTID=161&SINGLESTORE=true',storeurl:'https://shop.nd.edu/C21688_ustores/web/store_main.jsp?STOREID=9&SINGLESTORE=true', store:'Notre Dame Alumni Association Official Store'}
			
		];
		var nS5 = new noobSlide({
			box: $('box5'),
			size: 250,
			items: sampleObjectItems,
			interval: 7000,
			addButtons: {
				previous: $('prev5'),
				play: $('play5'),
				stop: $('stop5'),
				next: $('next5')
			},
			fxOptions: {
			duration: 2000,
			transition: Fx.Transitions.Circ.easeOut,
			wait: false
		},
			onWalk: function(currentItem){
				info5.empty();
			new Element('h3').set('html','<a target="_blank" href="'+currentItem.link+'">'+currentItem.title+'</a><br>&nbsp;<br>&nbsp;Sold by:<br>&nbsp;<a href="'+currentItem.storeurl+'" target="_blank">'+currentItem.store+'</a>').inject(info5);
			}
		});


	});