// JavaScript Document

// Set up the text files to be used.
var theText = new Array() // do not change this


theText[0] = "The International Beat Boss";
theText[1] = "The Global House Music Cartel";
theText[2] = "The Biggest ..The Baddest.. The Dopest: The Fresh Beat";
theText[3] = "Like a white foam cup filled with purp";
theText[4] = "Dealing the freshest beat on the street";
theText[5] = "Sip and Grip, Dip and Flip";
theText[6] = "Stay Up, Stay Fly";
theText[7] = "The Crunk Hurricane";
theText[8] = "Slapping the crunk into punks";
theText[9] = "The Bishop Don Juan of Dope Beats";
theText[10] = "Where top shelf bangers flow like Niagara Falls";
theText[11] = "The Undisputed Champ of House Music";
theText[12] = "Where house music kicks it";
theText[13] = "Where DJ's get Baptized";
theText[14] = "More Banger's than a Pornstar Convention";
theText[15] = "The Global House Music Movement";
theText[16] = "Balls so big.....We drag them";
theText[17] = "The International Spotlight of House Music";
theText[18] = "Fresher Tracks than a New Railroad";
theText[19] = "World Class House Music";
theText[20] = "Putting out More Hits than the Mafia";
theText[21] = "Promoting The Cream Of The Crop in House Music";
theText[22] = "Where House Music Miracles are Born";
theText[23] = "Helping the fresh, get fresher";
theText[24] = "Oh so fresh and Oh so fly";
theText[25] = "We are the house music revolution";
theText[26] = "The foundation for the future of music";



// do not edit anything below this line

var j = 0
var p = theText.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Array()
   preBuffer[i].src = theText[i]
}
var whichText = Math.round(Math.random()*(p-1));
function showText(){
//This a wrapper for the text array it can be changed if need
document.write('<p class="thetext">'+theText[whichText]+'</p>');
}