var step = 1;
var timerMain = setInterval("scroll()", 9000);

var skipstep = [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
function scroll()
{
    var stop = false;
    while (!stop) 
    {
        step += 1;
        if (step == 12) {
           step = 1;
        }
        if (!skipstep[step]) stop = true;
    }
    document.getElementById('ScreenShot').src = 'images/screen' + step + '.jpg';
  
    var exp = "";

    if (step == 1) {
        exp = "With Nobex Radio Companion you can listen to over 5200 radio stations from more than 80 countries around the world!";
    } else if (step == 2) {
        exp = "Choose from AM, FM and Internet stations. Genres include NPR, Sports, Christian, Talk, and of course, music.";
    } else if (step == 3) {
        exp = "Playlist information is available for over 2700 of these stations. You can see what is currently playing on the radio...";
    } else if (step == 4) {
        exp = "...and scroll back and look at previously played songs too.";
    } else if (step == 5) {
        exp = "You can also see the lyrics of your favorite songs...";
    } else if (step == 6) {
        exp = "...and get them to scroll synchronized with the song!";       
    } else if (step == 7) {
        exp = "Using the 'Lyrics and More' screen, you can learn more about the artist and get song info too.";       
    } else if (step == 8) {
        exp = "You can hear 30-second snippets to see if the song you missed is one you have been wanting to download.";
    } else if (step == 9) {
        exp = "If you click on 'Email Song Details' you will receive an email...";
    } else if (step == 10) {
        exp = "...with links to buy the song so you can keep your music collection fresh!";
    } else if (step == 11) {
        exp = "Nobex Radio Companion - Never Miss Your Favorite Radio Programs Again!";
    }    
        
    document.getElementById("screentext").innerHTML = exp;
}