window.addEvent('domready', function(){
					/* thumbnails example */
	new SlideItMoo({itemsVisible:4, // the number of thumbnails that are visible
					currentElement: 0, // the current element. starts from 0. If you want to start the display with a specific thumbnail, change this
					showControls:1,
					thumbsContainer: 'thumbs',
					elementScrolled: 'thumb_container',
					overallContainer: 'gallery_container'});
					
					$$('.n2Select').each(function(el){
					switch (el.get('name')) {
					  case 'colors':
						new n2Select(el, {
						  options: {
							
						  },
						 
						  selected: 2,
						  onChange: function(value) {
							// action when change value
						  }
						});
					  break;
					}
				  });
	
});