window.onload = function()
{
	resizeContent();
};
function writeFlash()
{
	document.write("<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0\" width=\"332\" height=\"133\" title=\"McKinney Glass\" style=\"margin-right:10px;float:left;\"><param name=\"movie\" value=\"m2.swf\" /><param name=\"quality\" value=\"high\" /><embed src=\"m2.swf\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"332\" height=\"133\" style=\"margin-right:10px;margin-bottom:0px;\"></embed></object>");
}

function resizeContent()
{
	max = 0;
	for(i=0;i<$("contentDiv").childNodes.length;i++)
	{
		if($("contentDiv").childNodes[i].offsetHeight > max)
		{
			max = $("contentDiv").childNodes[i].offsetHeight;
		}
	}
	$("contentDiv").style.height = max +"px";
}

function $() {
	var elements = new Array();
	for (var i = 0; i < arguments.length; i++) {
		var element = arguments[i];
		if (typeof element == 'string')
			element = document.getElementById(element);
		if (arguments.length == 1)
			return element;
		elements.push(element);
	}
	return elements;
}
