

/**************************************
* http://vertical-scroller.vbarsan.com/
*    This notice may not be removed 
**************************************/

//-- Begin Scroller's Parameters and messages -->
//scroller's width
var swidth=140;

//scroller's height
// pas ook de tabel aan!
var sheight=60;


//scroller's speed 
var sspeed=2;
var restart=sspeed;
var rspeed=sspeed;

//scroller's pause 
var spause=2000;

//scroller's background
var sbcolor="#dddddd";

//messages: set your own; use as many as you'd like; set up Hyperlinks to
//URLs as you normally do: <a target=... href="... URL ...">..message..</a>;
var singletext=new Array();

singletext[0]='<div class=tan><b>Jazz washes away the dust of every day life.</b><br>Art Blakey<br></div>';
singletext[1]='<div class=tan><b>One thing I like about jazz, kid, is that I don\'t know what\'s going to happen next. Do you?</b><br>Bix Beiderbecke<br></div>';
singletext[2]='<div class=tan><b>Music, of course, is what I hear and something that I more or less live by. It\'s not an occupation or profession, it\'s a compulsion</b><br>Duke Ellington<br></div>';
singletext[3]='<div class=tan><b>Jazz is music made by and for people who have chosen to feel good in spite of conditions</b><br>Johnny Griffin<br></div>';
singletext[4]='<div class=tan><b>Man, if you have to ask what it (jazz) is, you\'ll never know</b><br>Louis Armstrong<br></div>';
singletext[5]='<div class=tan><b> think I had it in the back of my mind that I wanted to sound like a dry martini</b><br>Paul Desmond<br></div>';
singletext[6]='<div class=tan><b>Sometimes you have to play a long time to be able to play like yourself</b><br>Miles Davis <br></div>';
singletext[7]='<div class=tan><b>Music gives a soul to the universe, wings to the mind, flight to the imagination and life to everything.</b><br>Plato<br></div>';
singletext[8]='<div class=tan><b>I think that a musician is like a doctor, he\'s supposed to heal people and make them feel better</b><br>Steve Turre<br></div>';
singletext[9]='<div class=tan><b>Art must be forgotten, beauty must be realised.</b><br>Piet Mondriaan<br></div>';
singletext[10]='<div class=tan><b>Music is an addiction</b><br>Miles Davis<br></div>';
singletext[11]='<div class=tan><b>My own feelings about the direction in which jazz should go are that there should be much less stress on technical exhibitionism and much more on emotional content, on what might be termed humanity in music and the freedom to say all that you want</b><br>Booker Little<br></div>';

//singletext[...]='...';
//-- end Parameters and message -->

//-- begin: Scroller's Algorithm -->
var ii=0;
function goup(){if(sspeed!=rspeed*16){sspeed=sspeed*2;restart=sspeed;}}

function start(){
if(document.getElementById){ns6div=document.getElementById('iens6div');ns6div.style.top=sheight+"px";ns6div.innerHTML=singletext[0];sizeup=ns6div.offsetHeight;ns6scroll();}
else 
if(document.layers){ns4layer=document.ns4div.document.ns4div1;ns4layer.top=sheight;ns4layer.document.write(singletext[0]);ns4layer.document.close();sizeup=ns4layer.document.height;ns4scroll();}
else 
if(document.all){iediv=iens6div;iediv.style.pixelTop=sheight+"px";iediv.innerHTML=singletext[0];sizeup=iediv.offsetHeight;iescroll();}}
function iescroll(){if(iediv.style.pixelTop>0&&iediv.style.pixelTop<=sspeed){iediv.style.pixelTop=0;setTimeout("iescroll()",spause);}else 
if(iediv.style.pixelTop>=sizeup*-1){iediv.style.pixelTop-=sspeed+"px";setTimeout("iescroll()",100);}else{if(ii==singletext.length-1)ii=0;else ii++;iediv.style.pixelTop=sheight+"px";iediv.innerHTML=singletext[ii];sizeup=iediv.offsetHeight;iescroll();}}
function ns4scroll(){if(ns4layer.top>0&&ns4layer.top<=sspeed){ns4layer.top=0;setTimeout("ns4scroll()",spause);}else 
if(ns4layer.top>=sizeup*-1){ns4layer.top-=sspeed;setTimeout("ns4scroll()",100);}else{if(ii==singletext.length-1)ii=0;else ii++;ns4layer.top=sheight;ns4layer.document.write(singletext[ii]);ns4layer.document.close();sizeup=ns4layer.document.height;ns4scroll();}}
function ns6scroll(){if(parseInt(ns6div.style.top)>0&&parseInt(ns6div.style.top)<=sspeed){ns6div.style.top=0;setTimeout("ns6scroll()",spause);}else 
if(parseInt(ns6div.style.top)>=sizeup*-1){ns6div.style.top=parseInt(ns6div.style.top)-sspeed+"px";setTimeout("ns6scroll()",100);}
else{if(ii==singletext.length-1)ii=0;else ii++;
ns6div.style.top=sheight+"px";ns6div.innerHTML=singletext[ii];sizeup=ns6div.offsetHeight;ns6scroll();}}
//-- end Algorithm -->

