// JavaScript Document
function addScrollers() {
// code each scroller as follows:
// startScroll('id of scroller div','content of scroller');
startScroll('myscroller','<b>STUNT CO-ORDINATING</b><br>Bound<br>James Mays Man Lab<br>Unwrapped with Miranda Hart<br>Doctor Who Live<br>Great Outdoors<br>Lotus Eaters<br>Heineken Commercial<br>Tracy Beaker Returns<br>Phones 4 U Commercial<br >Nuts & Bolts<br>999<br>Hotel<br>Fat Friends<br>Safe Steel<br>Riding For A Fall<br>Johnny Vaughen Tonight<br>Station Jim<br>Londinium<br>Clocking Off<br>This Is England<br>Ideal<br>The Lightning Kid<br>Conseptual<br>Kuch Khati Kuch Meethi<br>Brookside<br>Hollyoaks<br>Last Of The Summer Wine<br>Hot Gold<br>Crossroads<br>Look At Me<br>Attachments<br>The Other Half<br>One For The Road<br>Debenhams Commercial<br>My Family<br>X-Box Commercial<br>Loaded Magazine<br>Titanic Birth Of A Legend<br>You Can Run<br>The Bill<br>Arctic Monkeys Music Video<br>Control<br>Johnny Shakespeare<br>Doctors<br>Comparethemarket.com<br>Summer<br>Placebo<br>Goal 3<br>Unmade Beds<br>Coming Of Age<br>Tracy Beaker Returns<br>BBC HD Commercial<br>Boy Meets Girl<br>Massive<br>Nativity<br>Subway Commercial');


}

var speed=10; // 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)-6; 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;
                  
