\version "2.19.46"

\header{
  title = "Polka Of Birds"
  composer = "Matiss Schubert"
  tagline = ""
}
\include  "msJazz.ly"

voiceone = \relative g'' {
  \numericTimeSignature\time 4/4
  \key c \major
  \override Score.MetronomeMark.self-alignment-X = #0.7
  \tempo 4=180
  \repeat volta 2 {
    e4. d8 c4 g | c8 d e f g4 g, |
    a' c, g' c, | f8 e d c d4 e8 d |\break
    c4. e8 d4 b | g4 a8 b c4 g |
    a8 g f e d4 g | c,1 |\break
  }
  \repeat volta 2 {
    e4. d8  c8 d e f | g4 c d8 e d c |
    \time 2/4
     b c b a
     \time 4/4
     g2. a8 b | c4 g f a8 b |\break
     c4 g d a'8 b | c b c d e d e f |
     g2. a8 g | f8 e d c \times 2/3 {e8( f e)} d4 |
  }
  \alternative {
    {c4 b8 a g f e d}
    {c'1 \bar "|."}
  }

}

theChords = \chordmode {
  \repeat volta 2 {
    c2 s s s f c d:m g |
    a:m g s c f g c s
  }
  \repeat volta 2 {
    c s s g d:7 g s
    c c:sus4/f c/e c/d
    f s g s f g
  }
  \alternative {
    {c g}
    {c s}
  }


}

\score {
  <<
    \new ChordNames {  \theChords }
    \new Staff {\voiceone }
  >>
}