function adjustHeight()
{
	// containerColumnLeft - height adjust required for layout
	var el = document.getElementById('containerColumnRight');
	var nHeight = el.offsetHeight;
	nHeight = nHeight + 1;
	YAHOO.util.Dom.setStyle('containerColumnLeft', 'height', nHeight + 'px');
}

YAHOO.util.Event.onContentReady("containerColumnRight", adjustHeight);
YAHOO.util.Event.onContentReady("lightBox", adjustHeight);
YAHOO.util.Event.onContentReady("lightBoxHandle", adjustHeight);

//YAHOO.util.Event.onDOMReady(adjustHeight);
