var initMultiBoxLexique;

window.addEvent('domready', function(){

  var nbre = 0;
	var list = $$('a');
  list.each(function(element) {
    if(element.href.test("valo_lexique")) {
      nbre++;
      element.className = "mb_lexique";
      element.set('rel', 'width:800,height:600');
    }
  });

  if(nbre > 0)
  {
    initMultiBoxLexique = new multiBox('mb_lexique', {
			descClassName: 'multiBoxDesc',//the class name of the description divs
			path: 'Flash/',//path to mp3 and flv players
			useOverlay: true,//use a semi-transparent background. default: false;
			maxWidth: 640,//max width (set to false to disable)
			maxHeight: 400,//max height (set to false to disable)
			addDownload: false,//do you want the files to be downloadable?
			pathToDownloadScript: './Scripts/ForceDownload.asp',//if above is true, specify download script
			addRollover: true,//add rollover fade to each multibox link
			addOverlayIcon: true,//adds overlay icons to images within multibox links
			addChain: true,//cycle through all images fading them out then in
			recalcTop: true,//subtract the height of controls panel from top position
		  showControls: false,
		  showNumbers: false});
  }

});
