txt=new Array(2);
var i,j;
for(i=0;i<2;i++){
	txt[i]=new Array(2);
	for(j=0;j<2;j++) txt[i][j]=new Array();
} // jaja, das mit dem 3d-array is total bekloppt, weiss ich auch! aber urspruenglich war das anders geplant
txt[0][0][0]=1; txt[0][1][0]="frage: wer bist du?";
txt[0][0][1]=2; txt[0][1][1]="seth: ich bin seth";
txt[0][0][2]=3; txt[0][1][2]="frage: wie denkst du darueber?";
txt[0][0][3]=4; txt[0][1][3]="seth: worueber?";
txt[0][0][4]=5; txt[0][1][4]="frage: na, darueber eben.";
txt[0][0][5]=6; txt[0][1][5]="seth: ach so darueber... naja.";
txt[0][0][6]=1; txt[0][1][6]="";

txt[1][0][0]=1; txt[1][1][0]="seth: hier gehts zur eigentlichen website";
txt[1][0][1]=2; txt[1][1][1]="seth: haha, stimmt gar net... aber jetz!";
txt[1][0][2]=3; txt[1][1][2]="seth: oh, doch noch nicht.";
txt[1][0][3]=4; txt[1][1][3]="seth: gleich";
txt[1][0][4]=5; txt[1][1][4]="seth: countdown: 3";
txt[1][0][5]=6; txt[1][1][5]="seth: ... 2 ...";
txt[1][0][6]=7; txt[1][1][6]="seth: ... 1 ...";
txt[1][0][7]=8; txt[1][1][7]="seth: ... 0 ...";
txt[1][0][8]=9; txt[1][1][8]="seth: ... -1 ... ;-)";
txt[1][0][9]=10; txt[1][1][9]="seth: huahuahuahua!";
txt[1][0][10]=11; txt[1][1][10]="seth: vorwort zur website: hallo besucher, klicke hier, um auf die page zu gelangen...";
txt[1][0][11]=12; txt[1][1][11]="seth: willst du dir wirklich meine website anschauen?";
txt[1][0][12]=13; txt[1][1][12]="seth: meinst du, dass das hier noch weitergeht?";
txt[1][0][13]=14; txt[1][1][13]="seth: hattest recht, es geht noch weiter.";
txt[1][0][14]=15; txt[1][1][14]="seth: lalalalalalala";
txt[1][0][15]=16; txt[1][1][15]="seth: hast du nix besseres zu tun?";
txt[1][0][16]=17; txt[1][1][16]="seth: naja, ok, deine geduld soll belohnt werden, gleich gehts zur eigentlichen website!";
txt[1][0][17]=18; txt[1][1][17]="seth: jetzt gleich";
txt[1][0][18]=19; txt[1][1][18]="seth: gleich bald";
txt[1][0][19]=20; txt[1][1][19]="seth: sofort jetzt gleich bald nun";
txt[1][0][20]=21; txt[1][1][20]="seth: kennst du den film 'und taeglich gruesst das murmeltier'?";
txt[1][0][21]=22; txt[1][1][21]="seth: kennst du die bedeutung des begriffes 'dejavu'?";
txt[1][0][22]=23; txt[1][1][22]="seth: nein?";
txt[1][0][23]=0; txt[1][1][23]="seth: doch?";

function seth_ms(zahl,ttype){
	var text="<a href=\"#\" onclick=\"seth("+txt[ttype][0][zahl]+","+ttype+");\" class=\""+txt[ttype][1][zahl].split(":")[0]+"\">"+txt[ttype][1][zahl]+"</a><br>";
	document.all.bodyseth.innerHTML=text;
}

function seth_moz(zahl,ttype){
	var aseth = document.createElement("a");
	var asethtxt = document.createTextNode(txt[ttype][1][zahl]);
	var asethhref = document.createAttribute("href");
	asethhref.nodeValue = "#";
	var asethonclick = document.createAttribute("onclick");
	asethonclick.nodeValue = "seth("+txt[ttype][0][zahl]+","+ttype+");";
	var asethclass = document.createAttribute("class");
	asethclass.nodeValue = txt[ttype][1][zahl].split(":")[0];
	aseth.setAttributeNode(asethhref);
	aseth.setAttributeNode(asethonclick);
	aseth.setAttributeNode(asethclass);
	aseth.appendChild(asethtxt);
	var output = document.getElementById("bodyseth");
	output.appendChild(aseth);
}

function seth_ns4(zahl,ttype){
		document.layerseth.document.open();
		document.layerseth.document.write("<a href=\"javascript:seth("+txt[ttype][0][zahl]+","+ttype+");\" class=\""+txt[ttype][1][zahl].split(":")[0]+"\">"+txt[ttype][1][zahl]+"</a><br>");
		document.layerseth.document.close();
}

function seth(zahl,ttype){
// fuer ms-ie4+
	if(document.all){
		document.all.bodyseth.innerHTML="";
		seth_ms(zahl,ttype);
	}	else if(document.getElementById && document.createElement){
// mozilla/5.0
		while(document.getElementById("bodyseth").firstChild) document.getElementById("bodyseth").removeChild(document.getElementById("bodyseth").firstChild);
		seth_moz(zahl,ttype);
	} else if(document.layers){
// netscape 4.x
		seth_ns4(zahl,ttype);
	}
}
