Mui layout can help you layout you web application page easily.

Now, Mui layout only work out border layout.

The following code is a example to build a border layout. And there is a demo

var container=new Mui.Container({
	el:'outer1',
	layout:'border',
	items:{
		top:new Mui.Box({
			el:'header',
			height:40
		}),
		left:new Mui.Panel({
			el:'left',
			headerEl:'lheader',
			contentEl:'lmain',
			width:200,
			margin:[0,0,0,5],
			split:true
		}),
		center:new Mui.Panel({
			el:'center',
			headerEl:'center-header',
			contentEl:'center-main',
			margin:[0,5,0,5]
		}),								
		bottom:new Mui.Box({
			el:'footer',
			height:25
		})					
	}
});
container.render();