	window.addEvent('domready', function() {
	
		var meta1 = $('meta').setOpacity(0.7);
		var next = $('next_slide').setOpacity(0.7);
		
		var objectItems = [
			{title:'High Value Ticketing', description:'Beating the ticket touts at prestigious, high-value events', link:'solutions/'},
			{title:'Brand Protection', description:'Protecting your brand from the damaging effects of counterfeit goods', link:'solutions/'},
			{title:'Passports & Visas', description:'Verifying passports and visas in the fight to ensure homeland security', link:'solutions/'},
			{title:'Document Security', description:'Securing personal, legal, high value and secret documents', link:'solutions/'},
		];
		
		var hs1 = new noobSlide({
			box: $('page_image'),
			items: [1,2,3,4,5],
			size: 700,
			autoPlay: true,
			items: objectItems,
			interval: 7000,
			handles: $$('#next_slide span'),
			handle_event: 'mouseenter',
			onWalk: function(currentItem,currentHandle) {
				this.handles.removeClass('active');
				currentHandle.addClass('active');

				meta1.empty();
				new Element('h4').set('html', '<a href="'+currentItem.link+'">learn more...</a>'+currentItem.title).inject(meta1);
				new Element('p').set('html', currentItem.description).inject(meta1);
			}
		});
	});

