function checkAudience(menuAudienceArray,pageAudienceField)
{
	for (g=0; g<menuAudienceArray.length; g++) {
		if(menuAudienceArray[g] == 'all' || menuAudienceArray[g] == pageAudienceField) {
			return true;
		}
	}
	return false;
}

for (k = 0; k<leftMenus.length; k++) {
	if (checkAudience(leftMenuAudience[k],document.audienceForm.audienceField.value)) {
		if (leftMenuSelected[k] == 'y') {

			//check if sub menu is selected
			subSelected = false;
			for (h = 0; h<leftSubMenus.length; h++) {
				if (leftSubMenuSelected[h] == 'y') {
					subSelected = true;
				}
			}

			if (subSelected) {
				document.write("<tr><td align=\"center\" valign=\"top\"><img src=\"/static/en/image/dot.gif\" width=\"1\" height=\"1\" alt=\"dot\" border=\"0\"></td><td colspan=\"2\"><img src=\"/static/en/image/dot.gif\" width=\"1\" height=\"1\" alt=\"dot\" border=\"0\"><a class=\"leftNav5thHighlight\" href=\"" + leftMenuURL[k] + "\">" + leftMenuText[k] + "</a></td></tr> ");
			} else {
				document.write("<tr><td align=\"center\" valign=\"top\"><img border=\"0\" height=\"" + leftMenuImageHeight[k] + "\" src=\"" + leftMenuImage[k] + "\" width=\"" + leftMenuImageWidth[k] + "\"/></td><td colspan=\"2\"><img src=\"/static/en/image/dot.gif\" width=\"1\" height=\"1\" alt=\"dot\" border=\"0\"><a class=\"leftNav4thHighlight\" href=\"" + leftMenuURL[k] + "\">" + leftMenuText[k] + "</a></td></tr> ");
			}

			for (i = 0; i<leftSubMenus.length; i++) {
				if (checkAudience(leftSubMenuAudience[i],document.audienceForm.audienceField.value)) {
					if (leftSubMenuSelected[i] == 'y') {

						//check if third level sub menu is selected
						subSelected = false;
						for (l = 0; l<leftThirdLevelMenus.length; l++) {
							if (leftThirdLevelMenuSelected[l] == 'y') {
								subSelected = true;
							}
						}

						if (subSelected) {
							document.write("<tr><td align=\"center\" valign=\"top\"><img src=\"/static/en/image/dot.gif\" width=\"1\" height=\"1\" alt=\"dot\" border=\"0\"></td><td><img src=\"/static/en/image/dot.gif\" width=\"12\" height=\"1\" alt=\"dot\" border=\"0\"></td><td><a class=\"leftNav5thHighlight\" href=\"" + leftSubMenuURL[i] + "\">" + leftSubMenuText[i] + "</a></td></tr> ");
						} else {
							document.write("<tr><td align=\"center\" valign=\"top\"><img src=\"/static/en/image/dot.gif\" width=\"1\" height=\"1\" alt=\"dot\" border=\"0\"></td><td align=\"center\" valign=\"top\"><img border=\"0\" height=\"" + leftSubMenuImageHeight[i] + "\" src=\"" + leftSubMenuImage[i] + "\" width=\"" + leftSubMenuImageWidth[i] + "\"/></td><td><a class=\"leftNav4thHighlight\" href=\"" + leftSubMenuURL[i] + "\">" + leftSubMenuText[i] + "</a></td></tr> ");
						}

						for (j = 0; j<leftThirdLevelMenus.length; j++) {

							if (checkAudience(leftThirdLevelMenuAudience[j],document.audienceForm.audienceField.value)) {

								if (leftThirdLevelMenuSelected[j] == 'y') {
									document.write("<tr><td align=\"center\" valign=\"top\"><img src=\"/static/en/image/dot.gif\" width=\"1\" height=\"1\" alt=\"dot\" border=\"0\"></td><td align=\"center\" valign=\"top\"><img src=\"/static/en/image/dot.gif\" width=\"12\" height=\"1\" alt=\"dot\" border=\"0\"></td><td><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\"><tr><td valign=\"top\"><img border=\"0\" height=\"" + leftThirdLevelMenuImageHeight[j] + "\" src=\"" + leftThirdLevelMenuImage[j] + "\" width=\"" + leftThirdLevelMenuImageWidth[j] + "\"/></td><td valign=\"top\"><a class=\"leftNav4thHighlight\" href=\"" + leftThirdLevelMenuURL[j] + "\">" + leftThirdLevelMenuText[j] + "</a></td></tr></table></td></tr> ");
								} else {
									document.write("<tr><td align=\"center\" valign=\"top\"><img src=\"/static/en/image/dot.gif\" width=\"1\" height=\"1\" alt=\"dot\" border=\"0\"></td><td align=\"center\" valign=\"top\"><img src=\"/static/en/image/dot.gif\" width=\"1\" height=\"1\" alt=\"dot\" border=\"0\"></td><td><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\"><tr><td valign=\"top\"><img src=\"/static/en/image/dot.gif\" width=\"11\" height=\"1\" alt=\"dot\" border=\"0\"></td><td valign=\"top\"><a class=\"leftNav4thInactive\" href=\"" + leftThirdLevelMenuURL[j] + "\">" + leftThirdLevelMenuText[j] + "</a></td></tr></table></td></tr> ");
								}
							}
						}

					} else {
						document.write("<tr><td align=\"center\" valign=\"top\"><img src=\"/static/en/image/dot.gif\" width=\"1\" height=\"1\" alt=\"dot\" border=\"0\"></td><td valign=\"top\"><img src=\"/static/en/image/dot.gif\" width=\"12\" height=\"1\" alt=\"dot\" border=\"0\"></td><td><a class=\"leftNav4thInactive\" href=\"" + leftSubMenuURL[i] + "\">" + leftSubMenuText[i] + "</a></td></tr> ");
					}
				}
			}
		} else {
			document.write("<tr><td align=\"center\" valign=\"top\"><img src=\"/static/en/image/dot.gif\" width=\"1\" height=\"1\" alt=\"dot\" border=\"0\"></td><td colspan=\"2\"><img src=\"/static/en/image/dot.gif\" width=\"1\" height=\"1\" alt=\"dot\" border=\"0\"><a class=\"leftNav4thInactive\" href=\"" + leftMenuURL[k] + "\">" + leftMenuText[k] + "</a></td></tr> ");
		}
	}
}

