var flash = '';

function pinTool(contentHeight, leftHeight) {
		if (contentHeight > leftHeight) {
			YAHOO.util.Dom.setStyle('leftCol', 'height', contentHeight + "px");
			YAHOO.util.Dom.addClass('tools', 'pinned');
		} else {
			YAHOO.util.Dom.setStyle('content', 'height', leftHeight + "px");
		}
}
function init() {
	if (document.getElementById('tools')) {
		var contentRegion = YAHOO.util.Dom.getRegion('content');
		var contentHeight = contentRegion.bottom - contentRegion.top;
		var leftRegion = YAHOO.util.Dom.getRegion('leftCol');
		var leftHeight = leftRegion.bottom - leftRegion.top;
		pinTool(contentHeight, leftHeight);
	}
	if (document.getElementById('flash') && flash != '') {
		addSWF('flash', flash, 'myMovie', '770', '438', '8', '#000000');
	}
}
YAHOO.util.Event.onDOMReady(init);
