				var toon = new Object();
					toon.link = new Array();
				
				lcTitle = 0;
				
				// LINKS AND LINK HEADINGS
				
				fnAddTitle("Home");
				fnAddLink("- Homepage", "index.php", true);
				
				fnAddTitle("International");
				fnAddLink("- Information", "international.php", true);
				
				fnAddTitle("European Coastal");
				fnAddLink("- Information", "european.php", true);
				
				fnAddTitle("Marathon");
				fnAddLink("- Information", "marathon.php", true);
				
				fnAddTitle("Challenge");
				fnAddLink("- Information", "challenge.php", true);
				
				fnAddTitle("Classic");
				fnAddLink("- Information", "classic.php", true);

				fnAddTitle("Entry Forms & Regs");
				fnAddLink("- Forms", "downloads.php", true);
				
				fnAddTitle("Zoes Place");
				fnAddLink("- Information", "zoes.php", true);

				fnAddTitle("Sponsors");
				fnAddLink("- Information", "sponsors.php", true);

				fnAddTitle("Gallery");
				fnAddLink("- Information", "gallery.php", true);

				fnAddTitle("Sponsor Us");
				fnAddLink("- Information", "sponsorus.php", true);

				fnAddTitle("Guestbook");
				fnAddLink("- Information", "guestbook.php", true);

				fnAddTitle("Links");
				fnAddLink("- Links", "links.php", true);

				fnAddTitle("Forum");
				fnAddLink("- Information", "http://www.boundary500.co.uk/smf/", true);

				function fnAddTitle(pTitle)
				{
					var lcItem = toon.link.length;
					lcTitle = lcItem;
					toon.link[lcItem] = new Object();
					toon.link[lcItem].title = pTitle;
					toon.link[lcItem].page = "";
					toon.link[lcItem].id = lcTitle;
					toon.link[lcItem].type = "title";
				}
				function fnAddLink(pTitle,pLink,pDefault)
				{
					var lcItem = toon.link.length;
					toon.link[lcItem] = new Object();
					toon.link[lcItem].title = pTitle;
					toon.link[lcItem].page = pLink;
					toon.link[lcItem].id = lcTitle;
					toon.link[lcItem].type = "link";
					if (pDefault == true) toon.link[lcTitle].page = pLink;
				}
				function fnAddMail(pTitle,pAddress)
				{
					var lcItem = toon.link.length;
					lcTitle = lcItem;
					toon.link[lcItem] = new Object();
					toon.link[lcItem].title = pTitle;
					toon.link[lcItem].page = "mailto:%20" + pAddress;
					toon.link[lcItem].id = lcTitle;
					toon.link[lcItem].type = "email";
				}
				function fnKillWins()
				{
					if (window.xtpop) window.xtpop.close();
					if (window.test) window.test.close();
				}
