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) { // return; 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 The Marina Fountain, St. Leonards-On-Sea Saturday, July 31 2010"; TitleTicker.Lines[1] = "Chinchilla Zilla at The Shelley Arms, Broadbridge Heath Saturday, July 31 2010"; TitleTicker.Lines[2] = "Surface Unsigned at The Asylum, Birmingham Saturday, July 31 2010"; TitleTicker.Lines[3] = "Crowsfeat at The Jolly Farmers, Purley Saturday, July 31 2010"; TitleTicker.Lines[4] = "Surface Unsigned at The Asylum, Birmingham Sunday, August 01 2010"; TitleTicker.Lines[5] = "Surface Unsigned at The Purple Turtle, London Sunday, August 01 2010"; TitleTicker.Lines[6] = "Surface Unsigned at The Purple Turtle, London Sunday, August 01 2010"; TitleTicker.Lines[7] = "Surface Unsigned at The Purple Turtle, London Monday, August 02 2010"; TitleTicker.Lines[8] = "Surface Unsigned at The Purple Turtle, London Tuesday, August 03 2010"; TitleTicker.Lines[9] = "Surface Unsigned at The Purple Turtle, London Wednesday, August 04 2010"; TitleTicker.Lines[10] = "Chinchilla Zilla at The Dun Horse Inn, Horsham Friday, August 06 2010"; TitleTicker.Lines[11] = "Surface Unsigned at The Louisiana, Bristol Friday, August 06 2010"; TitleTicker.Lines[12] = "Surface Unsigned at The Asylum, Birmingham Friday, August 06 2010"; TitleTicker.Lines[13] = "BAD MEDICINE ... Bon Jovi Tribute at The Uckfield Club, Uckfield Saturday, August 07 2010"; TitleTicker.Lines[14] = "The Sharpees at cinque ports arms , Rye Saturday, August 07 2010"; TitleTicker.Lines[15] = "Surface Unsigned at The Asylum, Birmingham Saturday, August 07 2010"; TitleTicker.Lines[16] = "Surface Unsigned at The Fleece, Bristol Saturday, August 07 2010"; TitleTicker.Lines[17] = "Fugitive at The Whitton Chimes, Northwich Saturday, August 07 2010"; TitleTicker.Lines[18] = "Surface Unsigned at The Purple Turtle, London Sunday, August 08 2010"; TitleTicker.Lines[19] = "Chinchilla Zilla at Piries Bar, Horsham Thursday, August 12 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(); }