

var hBar = new ItemStyle(4, 0, '', 10, 0, '#3874AA', '#6699CC', 'highText', 'highText', '', '',

null, null, 'hand', 'default');


var hBarNoLink = new ItemStyle(4, 0, '', 10, 0, '#3874AA', '#3874AA', 'highText', 'highText', '', '',

null, null, 'hand', 'default');


// The 'sub Menu' items: these have popout indicators of "Greater Than" signs ">" 15px from their

// right edge, and CSS borders. Text class also changes on mouseover.

var subM = new ItemStyle(22, 0, '&gt;', -15, 3, '#FFFFFF', '#E1EAF2', 'lowText', 'lowText',

 'itemBorder', 'itemBorder', 92, null, 'hand', 'default');



// Create a PopupMenu() object, and pass its own name so it can reference itself later on.

// We also use a 'with' block to work with its properties and functions below.



var pMenu = new PopupMenu('pMenu');

with (pMenu)

{


startMenu('root', false, 'window.page.winW()/2 - menuW/2', 105, 19, hBar, '', false);

addItem('', '/', '', hBarNoLink, 160);

with(addItem('&nbsp;History', 'mHistory', 'sm:', null, 100)) onclick='window.location.href="../PENREN/history.cfm"';

with(addItem('&nbsp;Renovation Projects', 'mProjects', 'sm:', null, 100)) onclick='window.location.href="../PENREN/history_renovation.cfm"';

addItem('&nbsp; Pentagon Memorial', 'window.open("http://memorial.pentagon.mil/")', 'js:', null, 180);

addItem('&nbsp; Contact', '/PENREN/contact.cfm', '', null, 100);

addItem('&nbsp; Sitemap', '/PENREN/sitemap.cfm', '', null, 100);

addItem('', '/', '', hBarNoLink, 30);





startMenu('mHistory', true, 0, 22, 200, subM, '', false);

addItem('National Historical Landmark', '/PENREN/history.cfm', '');

addItem('Original Construction', '/PENREN/history_construction.cfm', '');

addItem('Building Features', '/PENREN/history_features.cfm', '');

addItem('Building Condition', '/PENREN/history_condition.cfm', '');

addItem('Pentagon Renovation', '/PENREN/history_renovation.cfm', '');

addItem('Completed Projects', '/PENREN/projects.cfm', '');





startMenu('mProjects', true, 0, 22, 150, subM, '', false);

addItem('Sustainable Design', '/PENREN/sustainabledesign.cfm', '');

addItem('Renovator Newsletter', '/PENREN/renovator.cfm', '');









}

