var MENU1_ITEMS =[
  [wrap_blue('Chevaux à vendre'), 'vendre.htm', {'sw':124, 'bw':124,'tt': 'Liste, photos et pedigree des chevaux à vendre'}],
   [wrap_blue('Plan du site'), 'plan.htm', {'sw':83, 'bw':83,'tt': 'Liste des différentes pages du site de l\'Élevage Fabie'}],
   [wrap_blue('Carte routière'), 'carte.htm', {'sw':103, 'bw':103,'tt': 'Carte routière pour se rendre à l\'Élevage Fabie'}],
   [wrap_blue('Pour nous joindre'), 'contact.htm', {'sw':118, 'bw':118,'tt': 'Courriel'}],
   [wrap_blue('Liens'), 'lien.htm', {'sw':43, 'bw':43,'tt': 'Liens reliés à l\'élevage de chevaux canadiens'}]
];

function wrap_blue (text) {
  var res=[];
  for (var i=0; i<3; i++)
    res[i]=['<table cellpadding="0" cellspacing="0" border="0"><tr><td><img src="img/blue',
      (i?2:1),'_l.gif" width="8" height="23" border="0"></td><td background="img/blue',
      (i?2:1),'_m.gif" style="font-face: tahoma, verdana, arial; font-size: 11px; font-weight: bold; color: #105D94" width="100%">',text,'</td><td><img src="img/blue',
      (i?2:1),'_r.gif" width="8" height="23" border="0"></td></tr></table>'
    ].join('');
  return res;
}

