document.writeln("<!--tab-->");
document.writeln("<div class=\"tabarea\"> ");

var alink = new Array("index.htm", "syminfo.htm", "list.htm", "sponsors.htm", "picture.htm", "http://users.ece.gatech.edu/~gtg174p/phpBB2/	", "new.htm", "report.htm", "tales.htm");
var aname = new Array("Home", "Info", "Attendance", "Sponsors", "Gallery", "Forum", "News", "Report", "About Us");

var split = document.URL.lastIndexOf("/");
var myhtm = document.URL.substring(split + 1);
if ( myhtm == "" ) {
	myhtm = "index.htm";
}

for ( i = 0 ; i < alink.length ; i++ ) {
    if ( alink[i] == myhtm )
        var myclass = "\"tab activetab\"";
    else
        var myclass = "\"tab\"";
    document.writeln("<a class=" + myclass + " href=\"" + alink[i] + "\">" + aname[i] + "</a>" );
}
document.writeln("</div>");



