var tLkInt = 7; 			// Number of internal links to pages

tLkName = new Array();		// The Link Name as displayed in Navbar
tLkURL = new Array();		// The Link URL

tLkName[1] = "Home";
tLkURL[1] = "index";

tLkName[2] = "Travel";
tLkURL[2] = "travel";

tLkName[3] = "Snowboarding";
tLkURL[3] = "snow";

tLkName[4] = "Cars and Motorsport";
tLkURL[4] = "motor";

tLkName[5] = "Music";
tLkURL[5] = "music";

tLkName[6] = "Beer";
tLkURL[6] = "beer";

tLkName[7] = "Photos";
tLkURL[7] = "album";

function tgenIntLink(tnm) {
	document.write('<a href="/'+tLkURL[tnm]+'.html">'+ tLkName[tnm] +'</a>');
	if (tnm != tLkInt) {
		document.write('</td><td class="navtext">');
	}
}

function tgenHeadLinks() {
	for (tlnk = 1; tlnk < tLkInt+1; tlnk++) {
		tgenIntLink(tlnk);	
	}
}
document.write('<table border="0" cellspacing="1" cellpadding="1" align="center"><tr bgcolor="#E0E0E0"><td class="navtext">');
tgenHeadLinks();
document.write('</td></tr></table>');
