var box;

window.addEvent('domready', function(){
	box = new multiBox('mb', {
		overlay: new overlay(),
		openFromLink: false,
		descClassName : 'MultiBoxDescription'
	});
});


function flashBox(url,title,description,width,height,type)
{
	this.url = url;
	this.title = title;
	this.description = description;
	this.width = width;
	this.height = height;
	this.type = type;
	box.create(this);
}
