var items = new Array(
"<a href=\"./\">Home</a>",
"<a href=\"./speed.html\">National Speed Awareness Courses</a>",
"<a href=\"./trafficlight.html\">Traffic Light Courses</a>",
"<a href=\"./alertness.html\">National Driver Alertness Courses</a>",
"<a href=\"./contact.html\">Contact Us</a>",
"<a href=\"http://www.gaijindesign.com\" target=\"_blank\">Website by Gaijin Design</a>"
);

document.write('<div id="textlinks"> | ')

for (i = 0; i <= items.length - 1; i++) {
document.write(items[i] + ' | ');
}

document.write('</div>')
