		window.addEvent('domready', function() {

 			if($$('.mb').length > 0)//only triggered if 'mb' class found on page
			{
				var initMultiBox = new multiBox('mb', {
					descClassName: 'multiBoxDesc',//the class name of the description divs
					path: './',//path to mp3 and flv players
					useOverlay: true,//use a semi-transparent background. default: false;
					maxWidth: false,//600,//max width (set to false to disable)
					maxHeight: false,//400,//max height (set to false to disable)
					addDownload: false,//do you want the files to be downloadable?
					pathToDownloadScript: './cgi-bin/forceDownload.cgi',//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: false//subtract the height of controls panel from top position
				});
			};
		});
		