/*
function topnavdivs(thisArray,name) {
for (var j=0; j < thisArray.length; j++) {
document.write('
');
}
}
*/
function topnavdivs(thisArray,name) {
for (var j=0; j < thisArray.length; j++) {
if (thisArray[j][2]!='') {
var tnav_link = thisArray[j][2]; // human readable
}
else {
var tnav_link = thisArray[j][1]; // id
}
document.write('');
}
}
// 4. the DIVs for each menu item
document.write('');
// Publications
document.write('
');
topnavdivs(mdPubs,"Pubs");
document.write('
');
// Justice Awards
document.write('
');
topnavdivs(mdJA,"Awards");
document.write('
');
// Research
document.write('
');
topnavdivs(mdResearch,"Research");
document.write('
');
// Grants
document.write('
');
topnavdivs(mdGrants,"Grants");
document.write('
');
// Legal info
document.write('
');
topnavdivs(mdLegalInfo,"LegalInfo");
document.write('
');
// Legal Links
document.write('
');
topnavdivs(mdLegalLinks,"LegalLinks");
document.write('
');
document.write('
');