var links, opening, closing;

opening = '<table border="0" cellpadding="0" cellspacing="0" class="bottom_nav" align="center"><tr>';
closing = '</tr></table>';

//add or re-order links here 
arr_link = new Array();
arr_link[0] = '<a href="http://www.vjt.com/index.html">Home</a>'
arr_link[1] = '<a href="http://www.vjt.com/About_VJT.html">About VJT</a>';
arr_link[2] = '<a href="http://www.vjt.com/About_VJIS.html">About VJIS</a>';
arr_link[3] = '<a href="http://www.vjt.com/contact_us.html">Contact Us</a>';
arr_link[4] = '<a href="http://www.vjt.com/News.html">News</a>';
arr_link[5] = '<a href="http://www.vjt.com/Resources.html">Resources</a>';
arr_link[6] = '<a href="http://www.vjt.com/Tradeshow.html">Tradeshows</a>';
arr_link[7] = '<a href="http://www.vjt.com/Employment.html">Employment</a>';



document.write(opening);
for (var i in arr_link){
	document.write('<td>' + arr_link[i] + '</td>');	
}
document.write(closing);



