function __construct($field = array(), $value = '', $parent)
 {
     if (!isset($field['options'])) {
         $field['options'] = array(1 => __("Show", 'ct_theme'), 0 => __("Hide", 'ct_theme'));
     }
     //no way - default values on plugin init do not allow this
     /*if(!isset($field['std'])){
     			$field['std'] = 1;
     		}*/
     parent::__construct($field, $value, $parent);
 }