<!--

var line=new Array()
line[1]="Elect Stuart King as Labour MP for Putney, Roehampton & Southfields"
line[2]="Re-elect Martin Linton as Labour MP for Battersea, Balham & Wandsworth"
line[3]="Re-elect Sadiq Khan as Labour MP for Tooting, Earlsfield & Furzedown"
line[4]="Vote for Peter Carpenter, Sean Lawless and Donald Roy in Roehampton"
line[5]="Vote for Leonie Cooper, John Farebrother & Mark Thomas in Furzedown"
line[6]="Vote for Sheila Boswell, James Daley & Ben Johnson in Tooting"
line[7]="Vote for Christian Klapp, Dominic Le Moignan & Gemma Reay in East Putney"
line[8]="Vote for Maureen Booker, Daniel Lawless & Patrick Macfarlane in West Putney"
line[9]="Vote for Tony Belton, Simon Hogg & Wendy Speck in Latchmere"
line[10]="Vote for Jayne Harding, Gareth Noble & Peter Taylor in Queenstown"
line[11]="Re-elect Andy Gibbons, Rex Osborn & Billi Randall in Graveney"
line[12]="Vote for Janet Grimshaw, Chris Locke & Bibi Qureshi in Thamesfield"
line[13]="Vote for Basheer Khan, Revd Jim McKinney & Ferdous Rahman in West Hill"
line[14]="Vote for Matt Hay, Alex Lisinge & Tom Marsom in Southfields"
line[15]="Vote for Geof Boyd, Stephen Ryan and Sara Linton, in Shaftesbury"
line[16]="Vote for Tom Baker Sara Higham and Tim Walker in Bedford Hill"
line[17]="Vote for Ed Elliott, Sara Higham and Simon Vandi in Balham"
line[18]="Vote for Will Martindale, Jessica Studdert and Tony Tuck in St Mary's Park"
line[19]="Vote for Derek Honeyball, Veronica King and Dan Smith in Wandsworth Common"
line[20]="Vote for Sara Guerra, Eleanor Kilyon and John Russell in Earlsfield"
line[21]="Vote for Fitzroy Beckford, Marcus Messenger and Fred Ponsonby in Fairfield"
line[22]="Vote for Neil Coburn, Harvey Heath and Shalu Kanal in Northcote"
line[23]="Vote for Elisabeth Davies, Stephen Jones and Mark Panto in Nightingale"


//Specify font size for scoller
var ts_fontsize="14px"

//--Don't edit below this line

var longestmessage=1
for (i=2;i<line.length;i++){
if (line[i].length>line[longestmessage].length)
longestmessage=i
}

//Auto set scroller width
var tscroller_width=line[longestmessage].length

lines=line.length-1 //--Number of lines

//if IE 4+ or NS6
if (document.all||document.getElementById){
document.write('<form name="bannerform">')
document.write('<input type="text" name="banner" size="'+tscroller_width+'"')
document.write('  style="background-color: #ffffff; color: '+document.body.text+'; font-family: verdana; font-size: '+ts_fontsize+'; font-weight:bold; border: medium none" onfocus="blur()">')
document.write('</form>')
}

temp=""
nextchar=-1;
nextline=1;
cursor="\\"
function animate(){
if (temp==line[nextline] & temp.length==line[nextline].length & nextline!=lines){
nextline++;
nextchar=-1;
document.bannerform.banner.value=temp;
temp="";
setTimeout("nextstep()",1000)}
else if (nextline==lines & temp==line[nextline] & temp.length==line[nextline].length){
nextline=1;
nextchar=-1;
document.bannerform.banner.value=temp;
temp="";
setTimeout("nextstep()",1000)}
else{
nextstep()}}

function nextstep(){

if (cursor=="\\"){
cursor="|"}
else if (cursor=="|"){
cursor="/"}
else if (cursor=="/"){
cursor="-"}
else if (cursor=="-"){
cursor="\\"}


nextchar++;
temp+=line[nextline].charAt(nextchar);
document.bannerform.banner.value=temp+cursor
setTimeout("animate()",40)}

//if IE 4+ or NS6
if (document.all||document.getElementById)
window.onload=animate
// -->