// --------------------------------------------------------------------------------
// sidemenu class
function sidemenu (a_items, a_start) {

	// browser check
	if (!document.body || !document.body.style)
		return;
	
	// items check
	if (a_items.length - 1 < a_start)
		return;

	// start table
	document.write ('<IMG height=85 width=170 alt=' + a_items[a_start][0] + ' hspace=0 src="images/sidemenu_' + a_start + '.jpg" border=0>');	
	document.write( '<TABLE cellSpacing=0 cellPadding=2 width="100%" border=0><TBODY>' );
	 
	// header
	document.write ('<TR vAlign=center bgColor=#CCCCCC><TD colSpan=3><A class=leftmenuhead href="' + (a_items[a_start][1] ? a_items[a_start][1] : '#') + '"' + (a_items[a_start][2] && a_items[a_start][2]['tw'] ? ' target="' + a_items[a_start][2]['tw'] + '"' : '') + '>' + a_items[a_start][0] + '</A></TD></TR>');

	if (a_items[a_start].length > 3) {
		for (var n_i = 3; n_i < a_items[a_start].length; n_i++) {
		
			document.write( '<TR vAlign=top><TD><IMG height=10 src="images/tri.gif" width=10 vspace=2></TD><TD colSpan=2><A class=leftmenubold href="' + (a_items[a_start][n_i][1] ? a_items[a_start][n_i][1] : '#') + '"' + (a_items[a_start][n_i][2] && a_items[a_start][n_i][2]['tw'] ? ' target="' + a_items[a_start][n_i][2]['tw'] + '"' : '') + '>' + a_items[a_start][n_i][0] + '</A></TD></TR>' );
			
			if (a_items[a_start][n_i].length > 3) {
				for (var n_j = 3; n_j < a_items[a_start][n_i].length; n_j++) {
					document.write( '<TR vAlign=top><TD width=10></TD><TD><SPAN class=leftmenu>-</SPAN></TD><TD width=139><A class=leftmenu href="' + (a_items[a_start][n_i][n_j][1] ? a_items[a_start][n_i][n_j][1] : '#') + '"' + (a_items[a_start][n_i][n_j][2] && a_items[a_start][n_i][n_j][2]['tw'] ? ' target="' + a_items[a_start][n_i][n_j][2]['tw'] + '"' : '') + '>' + a_items[a_start][n_i][n_j][0] + '</A></TD></TR>' );
				}
			}
		}
	}

	// end table
	document.write( '</TBODY></TABLE>' );	
}