var MENU2_ITEMS = [
  [wrap_blue('Paroisse'), null, {'sw':60, 'bw':70},

    ['Nom', 'nom.htm'],
    ['Logo', 'logo.htm'],
    ['Chant', 'chant.htm'],
    ['Slogan', 'slogan.htm'],
    ['Mission', 'mission.htm'],
    ['Historique', 'histor.htm'],
    ['Territoire', 'territoire.htm'],
  ],


  [wrap_blue('Pastorale'), null, {'sw':60,'sb':'Pastorale'},

    ['Équipes pastorales', 'equipepasto.htm'],
    ['Programme Pastoral', 'pgmpasto.htm'],
    ['Sacrements', 'sacrements.htm'],

  ],

  [wrap_blue('Informations'), null, {'sw':60, 'bw':160},

    ['Feuillet paroissial', 'bulletin.htm'],   
    ['St-Vincent de Paul', 'vincent.htm'],
    ['Comité Partage', 'vincent.htm#1'],
    ['Bibliothèque', 'biblio.htm'],
    ['Communauté du Plateau','accueilplateau.htm'],
   

  ],

  [wrap_blue('Pasteurs'), null, {'sw':60, 'bw':160},

    ['Mgr Jean-Charles Dufour', 'dufour.htm'],
    ['Jacques Wiseman', 'wiseman.htm'],
    ['Gédéon Kafuku', 'kafuku.htm'],
    ['Homélies', 'homelie.htm'],
    
  ],

  [wrap_blue('Conseil'), null, {'sw':60, 'bw':70},

    ['Fabrique', 'conseils.htm'],
    
   
    
  ],

];

function wrap_blue (text) {
  var res=[];
  for (var i=0; i<3; i++)
    res[i]=['<table cellpadding="0" cellspacing="0" border="0" bgcolor="#33CCCC"><tr><td><img src="Images/blue.gif',
      (i?2:1),'_l.gif" width="8" height="23" border="0"></td><td background="Images/blue.gif',
      (i?2:1),'_m.gif" style="font-face: tahoma, arial, verdata; font-size: 12px; font-weight: bold; color: #FFFFFF" width="100%">',text,'</td><td><img src="Images/blue.gif',
      (i?2:1),'_r.gif" width="8" height="23" border="0"></td></tr></table>'
    ].join('');
  return res;
}