document.write('<link rel="styleSheet" href="styles/launch-js.css" type="text/css" media="all" />');
window.onload = function() 
{
    if (document.getElementById('col'))
    {
        col();
    }
}
col = function()
{
	var _target = document.getElementById('col').getElementsByTagName('div');
	var _height = 0;
	for (var _count = 0; _count < _target.length; _count ++) 
	{
	    if (_target[_count].clientHeight > _height) 
	    {
	        _height = _target[_count].clientHeight;
        }
    }
	_height -= 60;
	for (var _count = 0; _count < _target.length; _count ++) 
	{
        _target[_count].style.height = _height + "px";
	} 
}
