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] = "BAD MEDICINE ... Bon Jovi Tribute at Biggin Hill Sports & Social Club, Biggin Hill Saturday, March 13 2010"; TitleTicker.Lines[1] = "Stolen ID at The Good Companions, Warlingham Saturday, March 13 2010"; TitleTicker.Lines[2] = "Stipe : Imitation of R.E.M. at The Club, Congleton Saturday, March 13 2010"; TitleTicker.Lines[3] = "Chinchilla Zilla at The Railway, Crawley Saturday, March 13 2010"; TitleTicker.Lines[4] = "Fire & Water at Farnham Maltings, Farnham Thursday, March 18 2010"; TitleTicker.Lines[5] = "Stolen ID at The New Eltham Social Club, New Eltham Friday, March 19 2010"; TitleTicker.Lines[6] = "Soul Reaction at Plastic Red Club, Sidcup Friday, March 19 2010"; TitleTicker.Lines[7] = "Chinchilla Zilla at The Cock Inn, Southwater Friday, March 19 2010"; TitleTicker.Lines[8] = "BAD MEDICINE ... Bon Jovi Tribute at The Ark, Newhaven Saturday, March 20 2010"; TitleTicker.Lines[9] = "Rough Edges at The Bear, Pagham Saturday, March 20 2010"; TitleTicker.Lines[10] = "Chinchilla Zilla at The Crows Nest, East Grinstead Saturday, March 20 2010"; TitleTicker.Lines[11] = "Blues Business at Bayshill Inn, Cheltenham Saturday, March 20 2010"; TitleTicker.Lines[12] = "Aynsley Lister and Band at Farnham Maltings, Farnham Thursday, March 25 2010"; TitleTicker.Lines[13] = "Chinchilla Zilla at Ye Olde Windsor Castle, Bookham Friday, March 26 2010"; TitleTicker.Lines[14] = "Chinchilla Zilla at **PRIVATE FUNCTION**, Crawley Saturday, March 27 2010"; TitleTicker.Lines[15] = "Soul Reaction at The Windlesham Theatre, Windlesham Saturday, March 27 2010"; TitleTicker.Lines[16] = "Rough Edges at The Green Dragon, Liphook Saturday, March 27 2010"; TitleTicker.Lines[17] = "STOMPIN’ DAVE’s ELECTRIC BAND at Farnham Maltings, Farnham Thursday, April 01 2010"; TitleTicker.Lines[18] = "Soul Reaction at The Half Moon, Crawley Friday, April 02 2010"; TitleTicker.Lines[19] = "Chinchilla Zilla at The Red Lyon, Horsham Friday, April 02 2010"; 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(); }