var links = new Array (
  
"Job Search", 					"http://www.washingtonpost.com/wl/jobs/VCF_JobSearch",
"Homeland Security", 		"http://www.washingtonpost.com/wl/jobs/VCF_Pavilion?pavilionid=2111",
"Engineering",   				"http://www.washingtonpost.com/wl/jobs/VCF_Pavilion?pavilionid=2126",
"Law Enforcement",   		"http://www.washingtonpost.com/wl/jobs/VCF_Pavilion?pavilionid=2136",
"Career Trends",  			"http://www.washingtonpost.com/wl/jobs/VCF_Content?Content=/VCF/careertrends/careertrends.htm",
"Events",  							"http://www.washingtonpost.com/wl/jobs/VCF_Content?Content=/VCF/events/events.htm",
"Employer Index",  			"http://www.washingtonpost.com/wl/jobs/VCF_EmpIndex"

  );
  
  for (i=0; i<links.length; i=i+2)
  {
    linkText = links[i];
    linkUrl = links[i+1];
      
    document.write("<TR bgcolor=\"#FFFFFF\">");
    document.write("<TD height=\"1\">");
    document.write("</TD>");
    document.write("</TR>");
    document.write("<TR valign=\"middle\">");
    document.write("<TD bgcolor=\"#E1E1E1\" height=\"20\">");
    document.write("&nbsp;&nbsp;&nbsp;<A style=\"text-decoration:none\"  href=\""+linkUrl+"\"><FONT size=\"-2\" face=\"verdana,arial,helvetica\" color=\"#003399\"><B>"+linkText+"</B></FONT></A></TD>");
    document.write("</TR>");
    document.write("<TR bgcolor=\"#FFFFFF\">");
    document.write("<TD height=\"1\">");
    document.write("</TD>");
    document.write("</TR>");
  }