window.addEvent('domready', function(){
	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
		descClassName: 'multiBoxDesc',//the class name of the description divs
		useOverlay: true,//use a semi-transparent background. default: false;
		maxSize: {w:800, h:600},//max dimensions (width,height) - set to null to disable resizing
		recalcTop: true,//subtract the height of controls panel from top position
		initialSize: {w:270, h:100},//initial width/height the box will open at before resizing
		contentColor: '#000000',//background colour of the content holder within the pop-up
		showNumbers: false,//show numbers such as "4 of 12"
		showControls: false,//show the previous/next, title, download etc
		movieSize: {w:600, h:270},//default width/height of movie
		path: 'assets/swf/'//path to mp3player and flvplayer etc
	});
});