function init()
{
	var table = document.getElementById('standings');
	
	for (var i = 2; i < table.rows.length; i++)
	{
		for (var j = table.rows[i].cells.length - 3; j > 1; j--)
		{
			table.rows[i].cells[j].title = table.rows[i-1].cells[j].title;
		}
	}
}

