window.addEvent(
  'domready',
  function()
  {
    new multiBox({
  		mbClass: '.mb',//class you need to add links that you want to trigger multiBox with (remember and update CSS files)
  		container: $(document.body),//where to inject multiBox
  		path: '/javascript/multiBox/Files/',//path to mp3 and flv players
  		useOverlay: true,//use a semi-transparent background. default: false;
  		maxSize: {w:800, h:700},//max dimensions (width,height) - set to null to disable resizing
  		addDownload: false,//do you want the files to be downloadable?
  		addRollover: false,//add rollover fade to each multibox link
  		addOverlayIcon: false,//adds overlay icons to images within multibox links
  		addChain: false,//cycle through all images fading them out then in
  		recalcTop: true,//subtract the height of controls panel from top position
  		addTips: false//adds MooTools built in 'Tips' class to each element (see: http://mootools.net/docs/Plugins/Tips)
	  });
  }
);
