





cur_page = location.href.substring(location.href.lastIndexOf("/") + 1)






// if index.html is defaulted, cur_page will be empty





if (cur_page == "") cur_page = "index.html"











if (b_NS4) document.write("<layer name=\"menu\" left=\"20\" top=\"190\" width=\"160\" visibility=\"show\">")
else document.write("<div id=\"menu\" class = \"MenuDiv\">");






document.write("<table valign=\"top\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"80%\">")






for (var index = 1; index < linklist.length; index ++) {






	doc_out += "<tr><td>"






	// only make this a live link if it isn't for the current page





	if (linklist[index].url != cur_page) {






		doc_out += "<a href=\"" + linklist[index].url + "\""





		doc_out += " onMouseOver=\"imgchg('on', 'link" + index + "')\" onMouseOut= \"imgchg('off', 'link" + index + "')\">"





		doc_out += "<img name=\"link" + index + "\" src=\"" + linklist[index].off_image + "\" border=\"0\" alt=\"" + linklist[index].title + "\"></a>"
		//doc_out += "<img name=\"link" + index + "\" src=\"" + linklist[index].off_image + "\" width=\"" + linklist[index].img_width + "\" height=\"" + linklist[index].img_height + "\" border=\"0\" alt=\"" + linklist[index].title + "\"></a>"





	}





	else {






		doc_out += "<img name=\"link" + index + "\" src=\"" + linklist[index].off_image + "\" border=\"0\" alt=\"" + linklist[index].title + "\">"
	}






	doc_out += "</td></tr>"





}






document.write(doc_out)





document.write("<tr><td></td></tr>")
document.write("</table>")

if (b_NS4) document.write("</layer>")






else document.write("</div>")

