
/*********************************************************************
Left-hand menu 1
*********************************************************************/
var menuTitle1 = new Array();
var menuLink1 = new Array();
menuTitle1[0] = "<B>About WAVE</B>";
menuTitle1[1] = "<B>WAVE Reports</B>";
menuTitle1[2] = "<B>Preventing Violence</B>";
menuTitle1[3] = "<B>Join Us</B>";
menuTitle1[4] = "<B>Links</B>";
menuTitle1[5] = "<B>Contact Us</B>";
 

menuLink1[0] = '"index.htm"';
menuLink1[1] = '"../WAVE_Reports/index.htm"';
menuLink1[2] = '"../Preventing_Violence/index.htm"';
menuLink1[3] = '"../Support/How_to_Join_Us.htm"';
menuLink1[4] = '"../Links/index.htm"';
menuLink1[5] = '"../Contact_Us/index.htm"';


document.write("<div id=menu11Div>")
document.write("<layer name=menu11Div>")

for (i = 0; i <= menuTitle1.length - 1; i++)
document.write('<a href=' + menuLink1[i] +  ' class= "menuLevel2" >' + menuTitle1[i] + '</a><br>')

document.write("</layer>")
document.write("</div>")
