var title = new Array("Company", "Professional Services");
var links = new Array("./company.html", "./p_services.html");
var index = 0;

for (index = 0; index < (title.length - 1); index++)
{
    document.write("<a class=\"top_links\" href=\"" + links[index] + "\">" + title[index] + "</a> &nbsp;&nbsp;&middot;&nbsp;&nbsp; ");
}
document.write("<a class=\"top_links\" href=\"" + links[index] + "\">" + title[index] + "</a><br><br>");