//call multiBox
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
			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

		});
	};
});