﻿var navArray = new Array("Our Company", "News", "Download", "Services", "Contact Us");

var navLinkArray = new Array("about_us.php", "news.php", "download.php", "services.php", "contact_us.php");

var tempHtml;

var tempClass;



tempHtml = '<table width="100%" border="0" cellspacing="0" cellpadding="0">';



for (i=0; i<navArray.length; i++) {

	tempHtml += '  <tr valign="top">';

	tempHtml += '	<td width="34" style="padding-top:10px;" align="right"><img src="images_new/icon_arrow.gif" width="14" height="14"></td>';

	

	if (i == section-1)	tempClass = "navOver";	else	tempClass = "nav";

	

	tempHtml += '	<td style="padding-left:15px; padding-top:10px; padding-bottom:10px;"><a href="'+navLinkArray[i]+'" class="'+tempClass+'">'+navArray[i]+'</a></td>';

	tempHtml += '  </tr>';

	if (i < navArray.length-1) {

		tempHtml += '  <tr>';

		tempHtml += '	<td colspan="2" style="background: url(images_new/left_line.gif) repeat-x"><img src="images_new/spacer.gif" width="1" height="3" border="0"></td>';

		tempHtml += '  </tr>';

	}

}



tempHtml += '</table>';



document.write(tempHtml);