\version "2.19.46"

\header{
  title = "The Timestone Statue"
  composer = "Matiss Schubert"
  tagline = ""
}
\include  "msJazz.ly"

theMelody = \relative d'' {
  \numericTimeSignature\time 4/4
  \key d \major
  \repeat volta 2 {
    a4 a8 b a g fis e |
    d e fis a b a fis a |
    e'4 e8 fis e d cis b |
    a b cis e fis e d e |
    fis4 fis8 g fis e d a |
    b4 b8 d b a g fis |
    e fis g a b a b cis |
    d b a fis d2 |
  }
  \repeat volta 2 {
    d8 fis a d, fis a d, fis |
    g fis e d \times 2/3 {fis( g fis)} e8 d |
    b8 d g d a d fis d |
    gis, b d e \times 2/3 {fis( g fis)} e4 |
    a4 fis8 e d e fis a |
    \times 2/3 {b8( cis b)} a4 e'4 cis8 b |
    a b cis e \times 2/3 {fis( g fis)} e4 |
    d4. e8 fis e d a |
    b4 b8 cis d b a fis |
    e fis g a b a b cis |
    d b a fis d2 |
  }
}

theChords = \chordmode {
  \repeat volta 2 {
    d2 s s s a s s s
    d s g s e:m s a:7 d
  }
  \repeat volta 2 {
    d s g a g d/fis e a
    d s s a s s d s
    g s e:m s a:7 d
  }
}

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