//<![CDATA[
//
function crunch_click(){

var line = new Array();
var chosen;
line[0] = "I will be<br />revengified!";
line[1] = "My therapist told <br />me to avoid this!";
line[2] = "Stop messing with<br />the Crunch!";
line[3] = "You making<br />me mad!";
line[4] = "Aaah!<br />My head!";
line[5] = "Crunch don't<br />feel so good!";
line[6] = "You hurt my<br />special place!";
line[7] = "No pain<br />no gain!";
line[8] = "Quit that<br />jibba jabba!";
line[9] = "World of<br />pain!";
line[10] = "Now you're just<br />being crazy!";
line[11] = "This is<br />absoludicrous!";
line[12] = "Is that all<br />you've got?";
line[13] = "Go click some<br />bad guys!";
chosen = Math.random()*13;
chosen = Math.round(chosen);
document.getElementById("crunchtext").style.paddingTop="13px";
document.getElementById("crunchtext").innerHTML=line[chosen];
}
//]]>