
	window.addEvents({
		'load': function(){
			/*  Create SlideItMoo instance  */	
			var sMoo = new SlideItMoo({
				overallContainer: 'SlideItMoo_info_outer',
				elementScrolled: 'SlideItMoo_info_inner',
				thumbsContainer: 'SlideItMoo_info_items',		
				itemsSelector: '.info_item',
				itemsVisible:1,				
				itemWidth:850,
				showControls:1,
				autoSlide: 7500,
				transition: Fx.Transitions.Expo.easeOut,
				duration: 800,
				direction:1,
				/* the onChange event fires when the current slide changes. We'll use it to display the next/previous article title ( in #announce ) */
				onChange: function( index ){
					/* calculate the previous slide index and the next */
					var prev = index-1 < 0 ? sMoo.elements.length-1 : index-1;
					var next = index+1 >= sMoo.elements.length ? 0 : index+1;
					/* titles are stored in h1 inside each .info_item. Grab the text and put it in our prev/next containers */
							
				}
			});	
			
			$$('.img_title').set('opacity', '0.7').setStyle('display', 'block');
			
		}
	});
