window.addEvent('domready', function() {
					  $$('.n2Select').each(function(el){
						switch (el.get('name')) {
						  case 'colors':
							new n2Select(el, {
							  options: {
							   
							  },
							  // this will overwrite the selected option in select object
							  selected: 2,
							  onChange: function(value) {
								// action when change value
							  }
							});
						  break;
						}
					  });
					});

					
