/* Mootools */
window.addEvent('domready', function(){
	
	/* banner rotator example */
	new FadeItMoo({ showControls: 1, // show the next-previous buttons
					autoFade: 4500, // insert interval in milliseconds
					duration: 1500,
					currentElement: 0, // the current element. starts from 0. If you want to start the display with a specific thumbnail, change this
					transition: Fx.Transitions.Cubic.easeInOut,
					thumbsContainer: 'banner-images',
					overallContainer: 'banner',
					controlsContainer: 'controls'});
					
	
					
});

