function RadTicker(id) { this.ID = id; this.Container = ''; this.CurrentChar = 0; this.CurrentLine = 0; this.Lines = new Array(); this.NewCharDelay = 50; this.NewLineDelay = 70; this.LineLoop = true; this.TimeoutID = 0; this.OnEnd = function () {}; } RadTicker.prototype.Start = function() { this.PrintNextChar(true); } RadTicker.prototype.PrintNextChar = function(clearLine) { var overflowFlag = false; var con = document.getElementById(this.Container); if (clearLine) { if (this.StatusBar) window.status = ''; else con.innerHTML = ''; } this.CurrentChar = this.CurrentChar + 1; if (this.CurrentChar > this.Lines[this.CurrentLine].length) { if (this.OnEnd) { this.OnEnd(); } this.CurrentLine = this.CurrentLine + 1; this.CurrentChar = 0; if (this.CurrentLine > this.Lines.length - 1) { overflowFlag = true; this.CurrentLine = 0; } if (overflowFlag && this.LineLoop == false) return; eval(this.ID + " = " + "this;"); window.setTimeout( this.ID + ".PrintNextChar(true)", this.NewLineDelay); return; } con.innerHTML += this.Lines[this.CurrentLine].charAt(this.CurrentChar-1); eval(this.ID + " = " + "this;"); window.setTimeout( this.ID + ".PrintNextChar(false)", this.NewCharDelay); } if (!TitleTicker) { var TitleTicker = new RadTicker('TitleTicker'); TitleTicker.Container = 'tcr_TitleTicker_container'; TitleTicker.Lines[0] = "Chinchilla Zilla at Cheers Bar, Bognor Regis Friday, July 04 2008"; TitleTicker.Lines[1] = "The Topless Barmaids at The George and Dragon, Sudbury Friday, July 04 2008"; TitleTicker.Lines[2] = "Stipe : Imitation of R.E.M. at Polesden Lacey Festival, Great Bookham Friday, July 04 2008"; TitleTicker.Lines[3] = "OPIUM at The Village Inn, Thurlestone Friday, July 04 2008"; TitleTicker.Lines[4] = "Six Miles Away at The Bear & Ragged Staff, Farnham Friday, July 04 2008"; TitleTicker.Lines[5] = "About Time at The Crown, Accrington Friday, July 04 2008"; TitleTicker.Lines[6] = "Soul Reaction at The Prince of Wales, Reigate Saturday, July 05 2008"; TitleTicker.Lines[7] = "Moe's Anvil at Woad Man, Boston Saturday, July 05 2008"; TitleTicker.Lines[8] = "OPIUM at Roche Football Club, St Austell Saturday, July 05 2008"; TitleTicker.Lines[9] = "The Topless Barmaids at Glemsford Social Club, Sudbury Saturday, July 05 2008"; TitleTicker.Lines[10] = "The Fallen at The Swan Inn, Long Melford, Sudbury Saturday, July 05 2008"; TitleTicker.Lines[11] = "the FEEL at The Bersted Tavern, Bognor Regis Saturday, July 05 2008"; TitleTicker.Lines[12] = "MONOBLOCO at Chapelfield Gardens, Norwich Saturday, July 05 2008"; TitleTicker.Lines[13] = "Jinnhouse at The Gatwick Arms, Horley Saturday, July 05 2008"; TitleTicker.Lines[14] = "OPIUM at The Bullers Arms, East Looe Sunday, July 06 2008"; TitleTicker.Lines[15] = "Bloco do Sul at St.Martins School, Dorking Monday, July 07 2008"; TitleTicker.Lines[16] = "MONOBLOCO at Norwich Arts Centre, Norwich Thursday, July 10 2008"; TitleTicker.Lines[17] = "FUNKYDORY at Farnham Maltings, Farnham Thursday, July 10 2008"; TitleTicker.Lines[18] = "OPIUM at Tavistock Inn, Tavistock Friday, July 11 2008"; TitleTicker.Lines[19] = "The Topless Barmaids at Black Lion, glemsford Friday, July 11 2008"; TitleTicker.NewCharDelay = 70; TitleTicker.NewLineDelay = 2500; TitleTicker.LineLoop = true; TitleTicker.StatusBar = false; if(TitleTicker.Lines.length>1) TitleTicker.CurrentLine = Math.round((TitleTicker.Lines.length-1)*Math.random()); TitleTicker.Start(); }