function beschreibung(icon) {
var icon;
document.getElementById("beschreibung").firstChild.nodeValue = icon;
}

function zufallText() {
var i;
text = new Array();
text[0]= 'shitrockerz.de - where the fist comes out at night!';
text[1]= 'shitrockerz.de - einfach mal die gefuehle abschalten...';

return text[Math.round(Math.random())];
}

function normal() {
var normal = zufallText();
document.getElementById("beschreibung").firstChild.nodeValue = normal;
}
