function addScrollers() {
// code each scroller as follows:
// startScroll('id of scroller div','content of scroller');
startScroll('myscroller','<strong>Who are Detroit?...</strong><p>Detroit are the North Wests premier blues soul & rnb outfit blending exceptional musicianship and vocal ability.</p><br> <p>The 6-piece professional band fronted by Jessica Van Bosch put their individual slant on classics by SADE, Clapton, Gary Moore, Joss Stone and many others.</p><br> <p>Detroit are available for bars, clubs, corporate, weddings, parties and other functions.</p><br> <p>If you want to learn more about Detroit please take time out to visit the site.</p><br><p>  If you would like to book the band to play for you, please contact us at <a class="r" href="mailto:info@detroitband.co.uk">info@detroitband.co.uk</a></p><br><strong>Latest News...</strong><p>Detroit are busy perfecting their material at their base in Little Hoole, but in the not too distant future, they will be appearing at a venue near you.</P><br><p>Check this space for information on upcoming gigs and other band news. </p><br><p>Thank you for taking the time to visit our site.  Have a nice day. </p>');

}

var speed=15; // scroll speed (bigger = faster)
var dR=false; // reverse direction

// Vertical Scroller Javascript
// copyright 24th September 2005, by Stephen Chapman
// permission to use this Javascript on your web page is granted
// provided that all of the code below (as well as these
// comments) is used without any alteration
var step = 2; function objWidth(obj) {if(obj.offsetWidth) return obj.offsetWidth; if (obj.clip) return obj.clip.width; return 0;} function objHeight(obj) {if(obj.offsetHeight) return obj.offsetHeight; if (obj.clip) return obj.clip.height; return 0;} function scrF(i,sH,eH){var x=parseInt(i.top)+(dR? step: -step); if(dR && x>sH)x=-eH;else if(x<2-eH)x=sH;i.top = x+'px';} function startScroll(sN,txt){var scr=document.getElementById(sN); var sW = objWidth(scr)-4; var sH = objHeight(scr); scr.innerHTML = '<div id="'+sN+'in" style="position:absolute; left:3px; width:'+sW+';">'+txt+'<\/div>'; var sTxt=document.getElementById(sN+'in'); var eH=objHeight(sTxt); sTxt.style.top=(dR? -eH : sH)+'px'; sTxt.style.clip='rect(0,'+sW+'px,'+eH+'px,0)'; setInterval(function() {scrF(sTxt.style,sH,eH);},1000/speed);}
window.onload = addScrollers;
                  
