/* --------------- STUDIO CONNECTIONS EXTERNAL JAVASCRIPT FILE -------------- */
/*                                                                            */
/*    Description: Create array of song data for JukeBox                      */
/*         Client: Cloud Studios - info@cloudstudios.com                      */
/*        Website: www.cloudstudios.com                                       */
/*         Author: Colin Abrahams - colin@studioconnections.net.au            */
/*      Copyright: 2008 Colin Abrahams, Studio Connections                    */
/*       Location: Wyong, NSW, Australia                                      */
/*        Version: SC-5.8                                                     */
/*   Last Updated: 2008-11-25                                                 */


// Specify optional opening song
JukeIntro = "";

// Song List item constructor function
function JukeItem(SongURL, PictureURL, InfoURL, Artist, SongTitle) {
  this.Addr = SongURL;                                               // Song URL
  this.Pict = PictureURL;                      // 50x50 Thumbnail URL (optional)
  this.Info = InfoURL;      // Link to additional info on a main page (optional)
  this.Arti = Artist;                                // Artist name for Info Box
  this.Song = SongTitle;                              // Song title for Info Box
  this.Stat = null;                                // Used to track played songs
}

// Create array for Song List
JukeList = new Array();

// Populate array with song data
n = 0;
JukeList[n] = new JukeItem("Music/GailPage-WithoutYouHere.mp3",
                           "Music/Thumbs/Gail1T.jpg",
                           "Artists/GailPage/GailPageA.html",
                           "Gail Page",
                           "Without You Here");
n++;
JukeList[n] = new JukeItem("Music/GailPage-ShapeImIn.mp3",
                           "Music/Thumbs/Gail2T.jpg",
                           "Artists/GailPage/GailPageA.html",
                           "Gail Page",
                           "Shape I'm In");
n++;
JukeList[n] = new JukeItem("Music/GailPage-Tonight.mp3",
                           "Music/Thumbs/Gail3T.jpg",
                           "Artists/GailPage/GailPageA.html",
                           "Gail Page",
                           "Tonight");
n++;
JukeList[n] = new JukeItem("Music/GailPage-ListeningToMe.mp3",
                           "Music/Thumbs/Gail4T.jpg",
                           "Artists/GailPage/GailPageA.html",
                           "Gail Page",
                           "Listening To Me");
n++;
JukeList[n] = new JukeItem("Music/GailPage-GeckoMoon.mp3",
                           "Music/Thumbs/Gail5T.jpg",
                           "Artists/GailPage/GailPageA.html",
                           "Gail Page",
                           "Gecko Moon");
n++;
JukeList[n] = new JukeItem("Music/GailPage-ThroughTheFire.mp3",
                           "Music/Thumbs/Gail6T.jpg",
                           "Artists/GailPage/GailPageA.html",
                           "Gail Page",
                           "Through The Fire");
n++;
JukeList[n] = new JukeItem("Music/JoeRobinson-Birdseed.mp3",
                           "Music/Thumbs/JoeRobinson3T.jpg",
                           "Artists/JoeRobinson/JoeRobinsonA.html",
                           "Smokin' Joe Robinson",
                           "Birdseed");
n++;
JukeList[n] = new JukeItem("Music/JoeRobinson-BlindHoseRag.mp3",
                           "Music/Thumbs/JoeRobinson2T.jpg",
                           "Artists/JoeRobinson/JoeRobinsonA.html",
                           "Smokin' Joe Robinson",
                           "Blind Hose Rag");
n++;
JukeList[n] = new JukeItem("Music/JoeRobinson-Blisters.mp3",
                           "Music/Thumbs/JoeRobinson1T.jpg",
                           "Artists/JoeRobinson/JoeRobinsonA.html",
                           "Smokin' Joe Robinson",
                           "Blisters");
n++;
JukeList[n] = new JukeItem("Music/JoeRobinson-Nubeck.mp3",
                           "Music/Thumbs/JoeRobinson4T.jpg",
                           "Artists/JoeRobinson/JoeRobinsonA.html",
                           "Smokin' Joe Robinson",
                           "Nubeck");
n++;
JukeList[n] = new JukeItem("Music/Reason-Reflection.mp3",
                           "Gallery/Reason/RTBParrisPianoT.jpg",
                           "Artists/Reason/ReasonA.html",
                           "The Reason To Breathe",
                           "Reflection");
n++;
JukeList[n] = new JukeItem("Music/Reason-Dragonfly.mp3",
                           "Music/Thumbs/RTBPu-Yu2T.jpg",
                           "Artists/Reason/ReasonA.html",
                           "The Reason To Breathe",
                           "Dragonfly");
n++;
JukeList[n] = new JukeItem("Music/Reason-Battle.mp3",
                           "Music/Thumbs/BattleT.jpg",
                           "Artists/Reason/ReasonA.html",
                           "The Reason To Breathe",
                           "After The Battle");
n++;
JukeList[n] = new JukeItem("Music/Reason-Reverie.mp3",
                           "Gallery/Reason/RTBChristian3T.jpg",
                           "Artists/Reason/ReasonA.html",
                           "The Reason To Breathe",
                           "Reverie");
n++;
JukeList[n] = new JukeItem("Music/Reason-Cerebral.mp3",
                           "Gallery/Reason/RTBMark2T.jpg",
                           "Artists/Reason/ReasonA.html",
                           "The Reason To Breathe",
                           "Cerebral Tempest");
n++;
JukeList[n] = new JukeItem("Music/OpalRoad-MissingTune.mp3",
                           "Gallery/ReasonTaiwan/RTBS114T.jpg",
                           "Artists/Opal/OpalA.html",
                           "Opal Road",
                           "The Missing Tune");
n++;
JukeList[n] = new JukeItem("Music/OpalRoad-FireDance.mp3",
                           "Gallery/ReasonTaiwan/RTBC073T.jpg",
                           "Artists/Opal/OpalA.html",
                           "Opal Road",
                           "Fire Shadow Dance");
n++;
JukeList[n] = new JukeItem("Music/OpalRoad-ThisTimeRound.mp3",
                           "Music/Thumbs/DheerajT.jpg",
                           "Artists/Opal/OpalA.html",
                           "Opal Road",
                           "This Time Round");
n++;
JukeList[n] = new JukeItem("Music/OpalRoad-LogLove.mp3",
                           "Gallery/Reason/RTBPu-YuFluteT.jpg",
                           "Artists/Opal/OpalA.html",
                           "Opal Road",
                           "Log Love");
n++;
JukeList[n] = new JukeItem("Music/OpalRoad-DidgeOdyssey.mp3",
                           "Music/Thumbs/Parris06T.jpg",
                           "Artists/Opal/OpalA.html",
                           "Opal Road",
                           "Didge Odyssey");
n++;
JukeList[n] = new JukeItem("Music/Doug_NorwegianWood.mp3",
                           "Music/Thumbs/Parkinson.gif",
                           "",
                           "Doug Parkinson",
                           "Norwegian Wood");
n++;
JukeList[n] = new JukeItem("Music/Pigs-TheWall.mp3",
                           "Gallery/Pigs/ParT.jpg",
                           "Artists/Pigs/PigsA.html",
                           "The Pigs",
                           "The Wall");
n++;
JukeList[n] = new JukeItem("Music/Pigs-Backdoor.mp3",
                           "Gallery/Pigs/TboneT.jpg",
                           "Artists/Pigs/PigsA.html",
                           "The Pigs",
                           "Backdoor Lovin'");
n++;
JukeList[n] = new JukeItem("Music/Pigs-Beautiful.mp3",
                           "Gallery/Pigs/BuckT.jpg",
                           "Artists/Pigs/PigsA.html",
                           "The Pigs",
                           "Beautiful");
n++;
JukeList[n] = new JukeItem("Music/JulieKember-MyWorld.mp3",
                           "Gallery/Julie/Julie8T.jpg",
                           "Gallery/Julie/Julie.html",
                           "Julie Kember",
                           "My World");
n++;
JukeList[n] = new JukeItem("Music/JulieKember-CatchMe.mp3",
                           "Gallery/Julie/JulieS12T.jpg",
                           "Gallery/Julie/Julie.html",
                           "Julie Kember",
                           "Catch Me");
n++;
JukeList[n] = new JukeItem("Music/JulieKember-TypicalGirl.mp3",
                           "Gallery/Julie/Julie9T.jpg",
                           "Gallery/Julie/Julie.html",
                           "Julie Kember",
                           "Typical Girl");
n++;
JukeList[n] = new JukeItem("Music/JulieKember-OwnTwoFeet.mp3",
                           "Gallery/Julie/Julie005T.jpg",
                           "Gallery/Julie/Julie.html",
                           "Julie Kember",
                           "Own Two Feet");
n++;
JukeList[n] = new JukeItem("Music/Bluezone-Unspoken.mp3",
                           "Gallery/Bluezone/Blue06T.jpg",
                           "Artists/Bluezone/BluezoneA.html",
                           "Bluezone",
                           "Unspoken");
n++;
JukeList[n] = new JukeItem("Music/Bluezone-PouringRain.mp3",
                           "Gallery/Bluezone/Blue13T.jpg",
                           "Artists/Bluezone/BluezoneA.html",
                           "Bluezone",
                           "Pouring Rain");
n++;
JukeList[n] = new JukeItem("Music/Bluezone-TroubleMan.mp3",
                           "Gallery/Bluezone/Blue14T.jpg",
                           "Artists/Bluezone/BluezoneA.html",
                           "Bluezone",
                           "Trouble Man");
n++;
JukeList[n] = new JukeItem("Music/Bluezone-PluginLover.mp3",
                           "Gallery/Bluezone/Blue12T.jpg",
                           "Artists/Bluezone/BluezoneA.html",
                           "Bluezone",
                           "Plug In Lover");
n++;
JukeList[n] = new JukeItem("Music/13-InHuman.mp3",
                           "Gallery/13/1303T.jpg",
                           "Gallery/13/13.html",
                           "13",
                           "In Human");
n++;
JukeList[n] = new JukeItem("Music/13-Grinder.mp3",
                           "Gallery/13/1304T.jpg",
                           "Gallery/13/13.html",
                           "13",
                           "Grinder");
n++;
JukeList[n] = new JukeItem("Music/13-Wheel.mp3",
                           "Gallery/13/1306T.jpg",
                           "Gallery/13/13.html",
                           "13",
                           "Wheel");
n++;
JukeList[n] = new JukeItem("Music/ACPM-LightAtTheEnd.mp3",
                           "Music/Thumbs/Parris1T.jpg",
                           "Artists/Parris/ParrisA.html",
                           "Andrew Clermont &amp; Parris Macleod",
                           "The Light At The End Of The Tunnel");
n++;
JukeList[n] = new JukeItem("Music/ACPM-Drive.mp3",
                           "Music/Thumbs/CD-HappyT.jpg",
                           "Artists/Parris/ParrisA.html",
                           "Andrew Clermont &amp; Parris Macleod",
                           "Drive");
n++;
JukeList[n] = new JukeItem("Music/ACPM-ReelingInTheBigOne.mp3",
                           "Gallery/Friends/Friend02T.jpg",
                           "Artists/Parris/ParrisA.html",
                           "Andrew Clermont &amp; Parris Macleod",
                           "Reeling In The Big One");
n++;
JukeList[n] = new JukeItem("Music/ACPM-TimeChangesMe.mp3",
                           "Music/Thumbs/Blue08T.jpg",
                           "Artists/Parris/ParrisA.html",
                           "Andrew Clermont &amp; Parris Macleod",
                           "Time Changes Me");
n++;
JukeList[n] = new JukeItem("Music/ACPM-DanceoftheGoodLife.mp3",
                           "Music/Thumbs/CD-GoodLifeT.jpg",
                           "Artists/Parris/ParrisA.html",
                           "Andrew Clermont &amp; Parris Macleod",
                           "Dance Of The Good Life");
n++;
JukeList[n] = new JukeItem("Music/PuYu-Debussey.mp3",
                           "Music/Thumbs/Pu-Yu1T.jpg",
                           "Artists/Pu-Yu/Pu-YuA.html",
                           "Wu Pu-Yu",
                           "Debussy: Minuet - Suite Bergermasque");
n++;
JukeList[n] = new JukeItem("Music/PuYu-Mozart.mp3",
                           "Music/Thumbs/Pu-Yu-001T.jpg",
                           "Artists/Pu-Yu/Pu-YuA.html",
                           "Wu Pu-Yu",
                           "Mozart: Adagio from Sonata No 18");
n++;
JukeList[n] = new JukeItem("Music/Amsterjam-NothingLikeYouThought.mp3",
                           "Gallery/Amsterjam/KKsingsT.jpg",
                           "Gallery/Amsterjam/Amsterjam.html",
                           "Amsterjam",
                           "Nothing Like You Thought It Would");
n++;
JukeList[n] = new JukeItem("Music/Freeway-MyPretty05.mp3",
                           "Gallery/Freeway/Free01T.jpg",
                           "Gallery/Freeway/Freeway.html",
                           "Freeway",
                           "My Pretty '05");
n++;
JukeList[n] = new JukeItem("Music/Freeway-BlackSoul.mp3",
                           "Gallery/Freeway/Free02T.jpg",
                           "Gallery/Freeway/Freeway.html",
                           "Freeway",
                           "Black Soul");
n++;
JukeList[n] = new JukeItem("Music/Chain-NoDifference.mp3",
                           "",
                           "Gallery/13/13.html",
                           "Chain",
                           "It Makes No Difference");
n++;
JukeList[n] = new JukeItem("Music/PhilEmmanuel-Beginning.mp3",
                           "Gallery/Phil/PhilS02T.jpg",
                           "Gallery/Phil/Phil.html",
                           "Phil Emmanuel",
                           "Beginning [The Grand Hotel, Wyong]");
n++;
JukeList[n] = new JukeItem("Music/PhilEmmanuel-Albatross.mp3",
                           "Music/Thumbs/PhilT.jpg",
                           "Gallery/Phil/Phil.html",
                           "Phil Emmanuel",
                           "Albatross [The Grand Hotel, Wyong]");
