﻿function getTeams ()
{
	var team = document.getElementById('meta-info').getElementsByTagName("li");
		document.write("<div class='team-logo'>");
		document.write("	<a class='team' href='http://toronto.bluejays.mlb.com' title='Toronto Blue Jays Home Page'>");
		document.write("		<img src='http://rogersroadtrip.net/bctour/games/logos/Tor.gif' alt='Toronto Logo'/>");
		document.write("	</a>");
		document.write("	<h4>" + team[0].lastChild.nodeValue + "</h4>");
		document.write("</div>");
		document.write("<div class='team-logo'>");
		document.write("	<a class='team' href='http://toronto.bluejays.mlb.com' title='Toronto Blue Jays Home Page'>");
		document.write("		<img src='http://rogersroadtrip.net/bctour/games/logos/Tor.gif' alt='Toronto Logo'/>");
		document.write("	</a>");
		document.write("	<h4>" + team[1].lastChild.nodeValue + "</h4>");
		document.write("</div>");	
		
/*	for (var i=0;i<away.length;i++)
		{
		document.write(away[i].lastChild.nodeValue);
		}*/
}
