//Manage search box default text
/****

Requires:
	mootools-1.2.4.2-more-yc.js
	mootools-1.2.4-core.js
	slideitmoo-1.1.js
	
****/
//<![CDATA[
window.addEvent('domready', function() {
   
	/* thumbnails example , div containers */   
	var x = new SlideItMoo({
				overallContainer: 'SlideItMoo_outer',
				elementScrolled: 'SlideItMoo_inner',
				thumbsContainer: 'SlideItMoo_items',		
				itemsVisible:1,
				elemsSlide:1,
				duration:1,
				itemsSelector: '.SlideItMoo_element',
				itemWidth: 289,
				showControls:1,
				startIndex:1,
				onChange: function(index){
				}
	
	});
	
	
});
//]]>