var armyList = [
  ['Member','Collections','Type','Record','ArmyPage'],
	['Nathan','Warmachine, 40K, Historical and many more','I create armies that interest me not beardy builds','Mixed but normally poor','NathanArmies.htm'],
	['Ade','Lots of periods and styles','A eclectic mix from slaanesh following space marines to English civil war','Better than average','AdrianArmies.htm'],
	['Alex','Tiger tanks, gribbly nids and steam pirate robots','Armoured spearheads and heavy tanks','As long as he dice are with me','AlexArmies.htm'],
	['Club members','Historical, fantasy and SF','Anywhere anytime','A selection of our models','ClubMemberArmies.htm']
	];
	
	
	function loadOurArmiesList(){
		var tl = document.getElementById('armyList');
		if(tl)
		{
			var t = document.createElement('table');
			t.id = 'traderTable';
			var th = document.createElement('thead');
			var tb = document.createElement('tbody');
			for(var i = 0;i<armyList.length;i++){
					if(i == 0){
						var tr = createHeaderRow(armyList[i]);
						th.appendChild(tr);
					}else{
						var tr = createTableRow(armyList[i],i,-1,4);
						tb.appendChild(tr);
					}
				}
			t.appendChild(th);
			t.appendChild(tb);
			tl.appendChild(t);	
			}
		}
	
