
<!--

// ticker setup
var charDelay = 50;
var storyDelay = 1500;
var numStories = 5;
// two dimensional array to hold stories and links
var storyMatrix = new Array();
storyMatrix[0] = new Array();
storyMatrix[1] = new Array();

// column 1: titles
storyMatrix[0][0] = "LMS Nurburgring News and Pictures!";
storyMatrix[0][1] = "NEW - Download wallpapers and incar video in the media section!";
storyMatrix[0][2] = "Read up on all Stuarts action @ Le Mans 24hrs 2006 - read more..";
storyMatrix[0][3] = "Latest track action here in the gallery - clicky!";
storyMatrix[0][4] = "stuartmoseley.com/news - clicky!";

// column 2: links
storyMatrix[1][0] = "news-lmsnurb.html";
storyMatrix[1][1] = "media.html";
storyMatrix[1][2] = "news-lm06-p1.html";
storyMatrix[1][3] = "gallery.html";
storyMatrix[1][4] = "news.html";
//-->

