﻿var navArray = new Array("公司背景", "最新消息", "軟件下載", "客戶服務", "聯絡我們");

var navLinkArray = new Array("about_us_big5.php", "news_big5.php", "download_big5.php", "services_big5.php", "contact_us_big5.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);