//call multiBox
window.addEvent('domready', function(){
	
	
	
	if($$('.mb').length > 0)//only triggered if 'mb' class found on page
	{
		//since MultiBox 1.4.1 it's written with a capitalized M
		//var initMultiBox = new multiBox('mb', { 
		var initMultiBox = new MultiBox('mb', {
			descClassName: 'multiBoxDesc',//the class name of the description divs
			useOverlay: true,//use a semi-transparent background. default: false;
			maxWidth: 600,//max width (set to false to disable)
			maxHeight: 400,//max height (set to false to disable)
			movieWidth:600,
			movieHeight: 400,
			showControls: true,
			showNumbers: false
		});
	};
});
