//###########################################################
//##############				#############
//############## Letras de Músicas Aleatórias	#############
//##############				#############
//###########################################################

images = new Array(4);

images[0] = " &quot;...It´s a kind of magic...&quot; ";

images[1] = " &quot;...You´re my best Friend...&quot; ";

images[2] = " &quot;...You take my breath away...&quot; ";

images[3] = " &quot;...Ooh! You make me live...&quot; ";

images[4] = " &quot;...Who waits forever anyway?...&quot; ";

images[5] = " &quot;...I´d like to go back one time...&quot; ";

images[6] = " &quot;...Put out the fire!...&quot; ";

images[7] = " &quot;...I want it all! And I want it now!...&quot; ";

images[8] = " &quot;...I live my life for you!...&quot; ";

images[9] = " &quot;...I´ll do the march of the black queen...&quot; ";

index = Math.floor(Math.random() * images.length);

document.write(images[index]);



