var tea = Array();

tea[0] = Array();
tea[0]['titel'] = "Die GYMCARD";
tea[0]['img'] = "html/teas_gymcard_neu.jpg";
tea[0]['text'] = "Tolle Vorteile mit der GYMCARD";
tea[0]['href'] = "/service/gymcard/index.htm";

tea[1] = Array();
tea[1]['titel'] = "Fit- und Aktivprogramm 2009";
tea[1]['img'] = "html/teas_fit+aktiv_programm_09.jpg";
tea[1]['text'] = "Die schönste Art, um Körper und Seele gesund zu halten";
tea[1]['href'] = "/service/stb-reiseangebote/aktivangebote__gesundheitswochen.htm";

tea[2] = Array();
tea[2]['titel'] = "STB-Jahresprogramm 2009";
tea[2]['img'] = "html/teas_stb_jp_2009.jpg";
tea[2]['text'] = "Bildung, Service, Wettkampf";
tea[2]['href'] = "/bildung/jahresprogramme_-_download/index.htm";

tea[3] = Array();
tea[3]['titel'] = "Fit- und Aktivprogramm";
tea[3]['img'] = "html/teas_fit+aktiv_gutschein.jpg";
tea[3]['text'] = "Verschenken Sie einen Reisegutschein";
tea[3]['href'] = "/bildung/stb-reiseangebote/files/fit+aktiv_programm_08_gutschein.pdf";

teacount = tea.length;

var t1= -1; var t2= -1; var t3= -1;

function writeTeaser(tnum) {
if (tnum==1) {
t1 = Math.floor(Math.random() * teacount);
} else if (tnum==2) {
while (t2== -1 || t2==t1) { t2 = Math.floor(Math.random() * teacount); }
} else if (tnum==3) {
while (t3== -1 || t3==t1 || t3==t2) { t3 = Math.floor(Math.random() * teacount); }
}
eval("i = t" + tnum + ";");

document.write('<div class="cteaser"><div><a class="teastitel" href="' + tea[i]['href'] + '">' + tea[i]['titel'] + '</a></div>');
document.write('<div class="teasimg"><a class="teastitel" href="' + tea[i]['href'] + '"><img alt="' + tea[i]['titel'] + '" border="0" src="' + tea[i]['img'] + '"></a></div><div class="teastext">' + tea[i]['text'] + '</div></div>');
}