<!-- Create a MenuMatic Instance -->
window.addEvent('domready', function() {			
	var myMenu = new MenuMatic({ orientation:'vertical' });		
	var contentLeft = $(document.body).getElement('div.containerLeft');
	var contentRight = $(document.body).getElement('div.containerRight');
	var clSize = contentLeft.getSize();
	var crSize = contentRight.getSize();
	if (clSize.y > (crSize.y - 127)) {
		var ySize = clSize.y + 147;
		contentRight.setStyle('height', ySize+'px');
	}
	//alert( clSize.y+' '+crSize.y );
});		