var jukeIndex = 0;
jukeList = new Array (55, 0, "",
   "10828", "1", "The Crossing to Capri",
    "9623", "1", "Deep Blue Skies",
    "6020", "1", "Desperate Times",
    "8740", "1", "Counting The Times",
    "1653", "1", "Autumn Changes",
    "3300", "1", "Start Over Again",
    "6014", "1", "Keep Turning Back",
    "5497", "1", "Arpeggio Study #1",
    "5696", "1", "Rambarama",
    "5592", "1", "Spell Bound",
    "5267", "1", "Getting There (Slowly)",
    "5260", "1", "No Rush",
    "2216", "1", "The DayDreamer",
    "5030", "1", "Make Up Your Mind",
    "4820", "1", "Only In Your Eyes",
    "4575", "1", "No End In Sight",
    "4500", "1", "Speechless",
    "4563", "1", "Twelve Blue Bars",
    "4604", "1", "Welcome Changes",
    "4557", "1", "Plain Jayne Picking",
    "4541", "1", "PolyRhthymic Lead Sequence",
    "4504", "1", "Miniature Arpeggio Study",
    "4494", "1", "A Friend In You",
    "4483", "1", "At The End Of The Day",
    "1808", "1", "Rick's Old Rag",
    "4352", "1", "Just Good Friends",
    "4365", "1", "African Echos",
    "4442", "1", "Sad But True",
    "4281", "1", "Could Have Fooled Me",
    "4222", "1", "Two Left Feet",
    "2180", "1", "The Little Dichotomy",
    "3092", "1", "The Storm",
    "1848", "1", "Lullaby",
    "3196", "1", "Peter O'Neills",
    "1653", "4", "Autumn Changes",
    "2421", "1", "The Lady Sandra",
    "3199", "1", "Reflexion",
    "3012", "2", "Classical Etude #1",
    "1789", "1", "Dancing With Doubt",
    "3257", "1", "The Butterfly",
    "4321", "1", "Just Another Sunday",
    "4308", "1", "The Perpetual Emotion Machine",
    "1339", "3", "Dedicated To WholeNote",
    "1902", "2", "Foot In Mouth Disease",
    "1523", "3", "In The Morning",
    "2924", "1", "Tick Tock",
    "1604", "2", "Maybe Tomorrow",
    "1470", "2", "Of Minor Con-Sequence",
    "2272", "2", "PolyRemnant",
    "1381", "3", "Prelude For Victor",
    "1400", "1", "To Agustin",
    "1620", "1", "Thumb Slapin' Latin Groove",
    "3074", "1", "Short Changed Samba",
    "1772", "1", "Up To You",
    "1213", "1", "Using More Open Strings In Arpeggios");

function JumpToLesson()
{
    document.location="http://www.wholenote.com/cgi-bin/page_view.pl?l="
        +jukeList[jukeIndex*3+0]+"&p="
        +jukeList[jukeIndex*3+1]+"&a=0";
}

function NextJuke(step)
{
  if (step && ++jukeIndex > jukeList[0])
    jukeIndex = 1;
  javascript:top.js.PlayLessonSample(
    jukeList[jukeIndex*3],
    jukeList[jukeIndex*3+1],0,0);
  LessonLink.innerHTML =
      "<B><FONT color='#113366'>Lesson #" +
        jukeList[jukeIndex*3+0]+"</FONT>  " +
      '<FONT color="brown">"' +
        jukeList[jukeIndex*3+2]+'"</FONT>  ' +
      "</B><FONT color='red'> <I>(Page " +
           +jukeList[jukeIndex*3+1]+")</I></FONT>";
}
