/**** Geburtstagsdaten ****/

// Erstellt eine Liste, in der Name und Geburtstag aller User gespeichert werden.
var userList = new UserList();

// User in die Liste eintragen.
// Beispiel:
//   addUser('Harry', 10, 2, 1950);
//
//   In Anführungszeichen wird der Name des Users eingetragen. Danach folgen,
//   jeweils durch Komma getrennt, die Zahlen für den Tag, den Monat und das
//   Jahr der Geburt. Harry wurde also am 10.02.1950 geboren.
with (userList) {
	addUser('Happy Birthday: Marvin Graetsch wird heute', 14, 4, 1988);
	addUser('Happy Birthday: Thomas Musielak wird heute', 24, 3, 1969);
	addUser('Happy Birthday: Klaus Hockling wird heute', 4, 1, 1959);
	addUser('Happy Birthday: Dirk da Costa Streibig wird heute', 27, 6, 1978);
	addUser('Happy Birthday: Michael Küpferle wird heute', 3, 9, 1982);
	addUser('Happy Birthday: Frank Lawrens wird heute', 10, 12, 1987);
	addUser('Happy Birthday: Tim Weber wird heute', 13, 3, 1984);
	addUser('Happy Birthday: Damir Alyukic wird heute', 24, 7, 1980);
	addUser('Happy Birthday: Orhan Demirbay wird heute', 4, 7, 1985);
	addUser('Happy Birthday: Sebastian Glowzak wird heute', 2, 8, 1984);
	addUser('Happy Birthday: Henning Witjes wird heute', 10, 4, 1986);
	addUser('Happy Birthday: Christian Böckner wird heute', 25, 7, 1985);
	addUser('Happy Birthday: Tino Decker wird heute', 31, 12, 1976);
	addUser('Happy Birthday: Christoph Drozda wird heute', 17, 9, 1976);
	addUser('Happy Birthday: Patrick Engeln wird heute', 4, 7, 1974);
	addUser('Happy Birthday: Thomas Fuchs wird heute', 10, 04, 1974);
	addUser('Happy Birthday: Christian Gerlach wird heute', 08, 4, 1974);
	addUser('Happy Birthday: Ingo Gritzan wird heute', 15, 10, 1979);
	addUser('Happy Birthday: Michael Kaminski wird heute', 3, 7, 1982);
	addUser('Happy Birthday: Sebastian Karnik wird heute', 17, 10, 1979);
	addUser('Happy Birthday: Thomas Karnik wird heute', 11, 11, 1985);
	addUser('Happy Birthday: Adam Klytta wird heute', 31, 10, 1976);
	addUser('Happy Birthday: Dennis Kompallik wird heute', 5, 5, 1982);
	addUser('Happy Birthday: Jörg Konermann wird heute', 26, 05, 1972);
	addUser('Happy Birthday: Mohammed Moho wird heute', 9, 9, 1976);
	addUser('Happy Birthday: Michael Nowoczyn wird heute', 9, 4, 1970);
	addUser('Happy Birthday: Alessandro Maceri wird heute', 17, 6, 1985);
	addUser('Happy Birthday: Karsten Schaaf wird heute', 27, 10, 1978);
	addUser('Happy Birthday: Rouven Schemiczek wird heute', 20, 7, 1982);
	addUser('Happy Birthday: Tobias Strutz wird heute', 16, 9, 1980);
	addUser('Happy Birthday: Volker Wessels wird heute', 31, 5, 1968);
	addUser('Happy Birthday: Daniel Wieler wird heute', 29, 12, 1980);
	addUser('Happy Birthday: Max Theben wird heute', 20, 2, 1986);
	addUser('Happy Birthday: Volker Engeln wird heute', 13, 3, 1946);
	addUser('Happy Birthday: Torsten Welke wird heute', 13, 2, 1964);
	addUser('Happy Birthday: Rüdiger Kloß wird heute', 7, 1, 1958);
	addUser('Happy Birthday: Werner Nowak wird heute', 29, 1, 1949);
	addUser('Happy Birthday: Theo Mertens wird heute', 20, 12, 1937);
	addUser('Happy Birthday: Werner Sawiracz wird heute', 19, 4, 1952);
	addUser('Happy Birthday: Theo Lohmüller wird heute', 27, 7, 1951);
	addUser('Happy Birthday: Winfried Weishaupt wird heute', 1, 1, 1939);
	addUser('Happy Birthday: Rolf Heidler wird heute', 12, 10, 1952);
}

