\version "2.19.46"

\header{
  title = "Running Low On Dog Food"
  composer = "Matiss Schubert"
  piece =  "Swing"
  tagline = ""
}
\include  "msJazz.ly"

theMelody = \relative d'' {
  \numericTimeSignature\time 4/4
  \key d \major
  \repeat volta 2 {
   a8 b a fis e d b a |
   d e fis a ~ a fis a b ~ |
   b a8 b d ~ d a b d |
   a8 b a fis b a fis e |
   d b a d ~ d e8 \times 2/3 {fis8( e d)} |
   e d e fis d2 |
  }
  \repeat volta 2 {
    a'8 fis a b ~ b a d b |
    a fis d b ~ b4 d8 e |
    fis a b d fis d e fis |
    d b a d ~ d4 d8 d |
    a8 fis a b ~ b a d b |
    a fis d b ~ b4 d8 e |
    fis a b fis a fis e d |
    fis d e d8 ~ d2 |
  }
}

theChords = \chordmode {
  \repeat volta 2 {
    d2 s s s
    g s d s
    g s a d
  }
  \repeat volta 2 {
    d s b:m s
    g s a d
    d s b:m s
    g s a d
  }
}

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