window.addEvent('domready', function(){
	//call multiBox
	var initMultiBox = 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: './movies/',				//path to mp3 and flv players
		useOverlay: true,				//use a semi-transparent background. default: false;
		showControls: false,			//show the previous/next, title, download etc
		descClassName: false,			//class of description box
		//descClassName: 'multiBoxDesc',	//the class name of the description divs
		//maxSize: {w:1024, h:813},		//max dimensions (width,height) - set to null to disable resizing
		maxSize: {w:1280, h:1069},		//max dimensions (width,height) - set to null to disable resizing
		addDownload: false,				//do you want the files to be downloadable?
		pathToDownloadScript: './js/multibox/ForceDownload.asp',//if above is true, specify path to download script (classicASP and ASP.NET versions included)
		addRollover: true,				//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: true					//adds MooTools built in 'Tips' class to each element (see: http://mootools.net/docs/Plugins/Tips)
	});
});
