function cNetworkLink(sHref, sInnerHTML)
{
	this.href = sHref;
	this.innerHTML = sInnerHTML;
}
	
//----------------------------------------------------------------------------------------------------------
function createNetworkBar()
{
	//Put links here
	var links = new Array
	(
		new cNetworkLink("http://www.totalgamingnetwork.com/", "TotalGamingNetwork"),
		new cNetworkLink("http://league.totalgamingnetwork.com/", "TotalGamingLeague"),
		new cNetworkLink("http://battlefield.totalgamingnetwork.com/", "Battlefield"),
		new cNetworkLink("http://cod.totalgamingnetwork.com/", "Call of Duty"),
		new cNetworkLink("http://csnation.totalgamingnetwork.com/", "CS-Nation"),
		new cNetworkLink("http://valve.totalgamingnetwork.com/", "Valve")

	);

	for (var i = 0; i < links.length; i++)
	{
		
		document.write("<a href='" + links[i].href + "' >" + links[i].innerHTML + "</a>");
	}
}