﻿ 
var scrollerWidth=150;
var scrollerHeight=90;
var scrollerSpeed = 1;
var msg = '<p style ="font-size:16px;text-align:center"><b>Influences</b></p> ' +
           'Lamb, Sneaker Pimps, Portishead, Massive Attack, Future Sound Of London, Hybrid, Unkle, ' +
           'James Lavelle, DJ Shadow, The Prodigy, Chemical Brothers, Red Snapper, The Cinematic Orchestra, ' +
           'Aphex Twin, Squarepusher, Leftfield, Orbital, LTJ Bukem, Good Looking Records, High Contrast, Flytronix, Four Hero, ' +
           'Artemis, Justice, Omni Trio, Sasha, John Digweed, Adam F, ' +
           'The Crystal Method, Tricky, FourTet, Bjork, Twin Peaks' +
           '<br/><br/><b>Visit Nubes\' <a href = "http://www.myspace.com/nubemusic">Myspace</a> page.</b> ';
           
var resumeSpeed = scrollerSpeed;

function Start()
{
    if(document.all) 
    {
        IEMarquee(Scroller)
     }   
    else
    
    if(document.getElementById)
    {
        NS6Marquee(document.getElementById('Scroller'));
    }

}

function IEMarquee(whichdiv)
{
    iediv = eval(whichdiv)
    scrollerHeight+=50;
    iediv.style.pixelTop=scrollerHeight;
    iediv.innerHTML=msg;
    sizeup=iediv.offsetHeight;
    IESlide()
}    

function IESlide()
{
    if(iediv.style.pixelTop>=sizeup*(-1))
    {
        iediv.style.pixelTop-=scrollerSpeed;
        setTimeout("IESlide()",100)
    }
    else
    {
        iediv.style.pixelTop=scrollerHeight;
        IESlide()
    }
}

function NS6Marquee(whichdiv)
{
    ns6div=eval(whichdiv)
    scrollerHeight+=50;
    ns6div.style.top=scrollerHeight+"px";
    ns6div.innerHTML=msg;
    sizeup=ns6div.offsetHeight;
    NS6Slide()
}

function NS6Slide()
{
    if(parseInt(ns6div.style.top)>=sizeup*(-1))
    {
        theTop=parseInt(ns6div.style.top)-scrollerSpeed;
        ns6div.style.top = theTop + "px";
        setTimeout("NS6Slide()",100)
    }    
    else
    {
        ns6div.style.top =scrollerHeight+"px";
        NS6Slide()
    }
}
