// JavaScript Document
function addScrollers() {
// code each scroller as follows:
// startScroll('id of scroller div','content of scroller');
startScroll('myscroller','<b>STUNT WORK</b><br>Heineken Commercial<br>Tracy Beaker Returns<br>Crimewatch<br>Navid and Johnny<br><br>Casualty<br>Eastenders<br>Jo Brand Show<br>A Breed Of Heroes<br>Harry<br>First Knight<br>The Bill<br>Nothing Personal<br>Smith & Jones<br>Small Faces<br>Muppet Treasure Island<br>The Darkening<br>Silent Witness<br>Respect<br>Out Of The Blue<br>Soldier-Soldier<br>The Preventers<br>Harvest Moon<br>Manic Street Preachers<br>One In A Million<br>Fierce Creatures<br>Loaded Magazine<br>E.A Games Commercial<br>Reverse Psychology<br>Boots Commercial<br>Titanic Birth Of A Legend<br>Thin Ice<br>Banglatown Banquet<br>The Lightning Kid<br>Hot Gold<br>The Brokers man<br>Bodyguards<br>The Borrowers<br>Heartbeat<br>Dangerfield<br>Tom Jones<br>Thief Takers<br>Looking After Jo Jo<br>Emmerdale<br>Byker Grove<br>Out Of The Blue<br>Hetty Wainthrope Investigates<br>The Cops<br>Unsuitable Job For A Woman<br>Pizza Hut Commercial<br>Playing The Field<br>Jim Tavera Show<br>Sunburn<br>Londons Burning<br>Sleepy Hollow<br>Daylight Robbery<br>The Railway Children<br>Liam<br>Long Time Dead<br>Last Of The Summer Wine<br>McDonalds Commercial<br>Lenny Blue<br>Waking The Dead<br>Tango Commercial<br>C.O.I Fire Safety Commercial<br>BBC 3 Commercial<br>Making Waves<br>Born & Bred<br>Stanleys Dragon<br>Resort To Murder<br>Childrens Ward<br>Gadgetman<br>999<br>See Red<br>The Break In<br>Nuts & Bolts<br>Londinium<br>Harbour Lights<br>Fat Friends<br>Clocking Off<br>Station Jim<br>Brookside<br>Crossroads<br>One For The Road<br>Arctic Monkeys Music Video<br>Control<br>Doctors<br>Shell Commercial<br>Summer<br>Mad Sad And bad<br>Ideal<br>Coming Of Age<br>BBC HD Commercial<br>Accidental Heros<br>In My Country<br>Massive<br>Twix Commercial<br>Peak Practice<br>Stick With Me Kid<br>Hollyoaks<br>The Witches Daughter<br>Ferrari 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;
                  