
for(x in myMenu){
	
	strWindowlocation = "window.location.assign";if(myMenu[x][2].indexOf("new")!=-1)strWindowlocation = "window.open";
	
	if (myMenu[x][1]!="Home"){
		currLoc = "'" + myMenu[x][0] +  "'";
		dnArrowImgSrc = 'images/spacer.gif';
		currClass = "leftNavLink";
		ie_handler = 'onMouseOver="hideall();showdiv(\'' + x + '\');" onMouseOut="hidediv(\'' + x + '\');" onClick="javascript:' + strWindowlocation + '(\'' + myMenu[x][0] + '\');return false;"';
		//nn_handler = 'onMouseOver="hideall();showdiv(\'' + x + '\');" onMouseOut="hidediv(\'' + x + '\');"';
		nn_handler = '';
		
		
		// Render MenuItems 
		if(document.layers){
			document.write('<ilayer id="menuboxIL' + x + '"><layer id="menuboxL' + x + '" background="images/leftNavMnItemBG2.gif" width="155" ' + nn_handler + '>');
			
		}else{
			document.write('<div class="menuItemBox" id="menubox' + x + '" ' + ie_handler + '>');
		}
		document.write('<div class="menuItemBoxInner" align="right">');
		document.write('<a href="' + myMenu[x][0] + '" id="link' + x + '" class="' + currClass + '" target="' + myMenu[x][2] + '">' + myMenu[x][1] + '</a> <img src="' + dnArrowImgSrc + '" width="17" height="18" border="0" align="absmiddle" name="leftNavDnArrow_' + x + '">');
		document.write('</div>');
		if(document.layers){
			document.write('</layer></ilayer><br>');
		}else{
			document.write('</div>');
		}
	}
}

/* document.write('<img src="images/0botleftArrow-2.gif" border="0" alt=""><br>'); */