function hover_textdecoration_input()
 {
     $textdeco = array(array('none', 'none'), array('underline', 'underline'), array('overline', 'overline'), array('line-through', 'line-through'), array('blink', 'blink'));
     a5_select('hover_textdecoration', 'clp_options[hover_textdecoration]', $textdeco, @self::$options['hover_textdecoration'], false, false, array('style' => 'min-width: 350px; max-width: 500px;'));
 }
 function select_heading($instance)
 {
     $base_id = 'widget-' . $this->id_base . '-' . $this->number . '-';
     $base_name = 'widget-' . $this->id_base . '[' . $this->number . ']';
     $headings = array(array('1', 'h1'), array('2', 'h2'), array('3', 'h3'), array('4', 'h4'), array('5', 'h5'), array('6', 'h6'));
     a5_select($base_id . 'h', $base_name . '[h]', $headings, $instance['h'], __('Weight of the Post Title:', 'custom-login-page'), false, array('space' => true));
 }