var tea = Array();

tea[0] = Array();
tea[0]['titel'] = "STB-Jahresprogramm 2009";
tea[0]['img'] = "html/teas_stb_jp_2009.JPG";
tea[0]['text'] = "Bildung, Service, Wettkampf";
tea[0]['href'] = "/bildung/jahresprogramme_-_download/index.htm";

tea[1] = Array();
tea[1]['titel'] = "IDTF 2009";
tea[1]['img'] = "html/teas_idtf_2009.jpg";
tea[1]['text'] = "30.05.-05.06.";
tea[1]['href'] = "http://www.stb-gym.de/veranstaltungen/deutsches_turnfest_2009/index.htm";

tea[2] = Array();
tea[2]['titel'] = "Streetdance";
tea[2]['img'] = "html/teas_sportkongress_kl.gif";
tea[2]['text'] = "Jetzt buchen! 20.06. im SpOrt Stuttgart";
tea[2]['href'] = "/bildung/aus-__fortbildungen/fortbildungen.htm";
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>');
}