var description = new Array();
description[0] = "&quot;50 Ways to Leave your Lover&quot;<BR/>Paul Simon";
description[1] = "&quot;All Day Sucker&quot;<BR/>Stevie Wonder"
description[2] = "&quot;Are You Experienced?&quot;<BR/>Jimi Hendrix"; 
description[3] = "&quot;Back In Black&quot;<BR/>AC/DC"; 
description[4] = "&quot;Ballroom Blitz&quot;<BR/>Sweet"; 
description[5] = "&quot;Big Bottom&quot;<BR/>Spinal Tap"; 
description[6] = "&quot;Blister in the Sun&quot;<BR/>Violent Femmes"; 
description[7] = "&quot;Brick House&quot;<BR/>The Commodores"; 
description[8] = "&quot;Car Wash&quot;<BR/>Rose Royce"; 
description[9] = "&quot;Dance the Night Away&quot;<BR/>Van Halen"; 
description[10] = "&quot;Dance to the Music&quot;<BR/>Sly &amp; the Family Stone"; 
description[11] = "&quot;Fat Boys&quot;<BR/>Fat Boys"; 
description[12] = "&quot;Funky Drummer&quot;<BR/>James Brown"; 
description[13] = "&quot;Gonna Love You Just a Little More Baby&quot;<BR/>Barry White"; 
description[14] = "&quot;Happy Feeling&quot;<BR/>Earth, Wind &amp; Fire"; 
description[15] = "&quot;Hawaii Five-O&quot;<BR/>the Ventures"; 
description[16] = "&quot;Head Like a Hole&quot;<BR/>Nine Inch Nails"; 
description[17] = "&quot;Heart of Glass&quot;<BR/>Blondie"; 
description[18] = "&quot;Hot for Teacher&quot;<BR/>Van Halen"; 
description[19] = "&quot;I Aint the One&quot;<BR/>Lynrd Skynrd"; 
description[20] = "&quot;In the Air Tonight&quot;<BR/>Phil Collins"; 
description[21] = "&quot;Isn't She Lovely&quot;<BR/>Stevie Wonder"; 
description[22] = "&quot;It's Like That&quot;<BR/>Run DMC"; 
description[23] = "&quot;Let It Whip&quot;<BR/>The Dazz Band"; 
description[24] = "&quot;Life's Been Good&quot;<BR/>Joe Walsh"; 
description[25] = "&quot;Longview&quot;<BR/>Green Day"; 
description[26] = "&quot;Lust for Life&quot;<BR/>Iggy and the Stooges"; 
description[27] = "&quot;Mr. Brownstone&quot;<BR/>Guns & Roses"; 
description[28] = "&quot;Oh Sheila&quot;<BR/>Ready For the World"; 
description[29] = "&quot;Paul Revere&quot;<BR/>The Beastie Boys"; 
description[30] = "&quot;Rapper&#39;s Delight&quot;<BR/>The Sugar Hill Gang"; 
description[31] = "&quot;Raspberry Beret&quot;<BR/>Prince";
description[32] = "&quot;Rock And Roll&quot;<BR/>Led Zeppelin"; 
description[33] = "&quot;Rosanna&quot;<BR/>Toto"; 
description[34] = "&quot;Run to the Hills&quot;<BR/>I. Ron Maiden"; 
description[35] = "&quot;Shake Me&quot;<BR/>Cinderella"; 
description[36] = "&quot;Shake Your Rump&quot;<BR/>The Beastie Boys"; 
description[37] = "&quot;Sunday Bloody Sunday&quot;<BR/>U2"; 
description[38] = "&quot;Swingtown &quot;<BR/>The Steve Miller Band"; 
description[39] = "&quot;Take the Money and Run&quot;<BR/>The Steve Miller Band"; 
description[40] = "&quot;Takin Care of Business&quot;<BR/>Bachman Turner Overdrive"; 
description[41] = "&quot;Theme from Shaft&quot;<BR/>Isaac Hayes";
description[42] = "&quot;Tom Sawyer&quot;<BR/>Rush"; 
description[43] = "&quot;Ugly Truth&quot;<BR/>Soundgarden"; 
description[44] = "&quot;Walking on Sunshine&quot;<BR/>Katrina and the Waves"; 
description[45] = "&quot;Walk This Way&quot;<BR/>Aerosmith"; 
description[46] = "&quot;War Pigs&quot;<BR/>Black Sabbath"; 
description[47] = "&quot;We Got the Beat&quot;<BR/>Go-go's"; 
description[48] = "&quot;We're Not Gonna Take It&quot;<BR/>Twisted Sister"; 
description[49] = "&quot;When the Levee Breaks&quot;<BR/>Led Zeppelin"; 
description[50] = "&quot;Miami Vice&quot;<BR/>Jan Hammer"; 

function scoreMe(){
	var divArray = document.getElementsByTagName('TD');
        var scoreText = "";
	var green=0;
	var red=0;
	for(i=0; i<divArray.length; i++){
		var color=divArray[i].style.backgroundColor
		if (color=="rgb(0, 203, 0)"||color=="#00cb00"){
			green++;
		}else if(color=="rgb(255, 0, 0)"||color=="#ff0000"){
			red++;
		}
	}
	var rest=51-green-red;
	var restper=Math.round((rest/51)*100);
	var greenper=Math.round((green/51)*100);
	var redper=Math.round((red/51)*100);
	scoreText=green+" Right: "+"("+greenper+"%)<br/> "+red+" Wrong: "+"("+redper+"%) <BR>Unanswered:"+"("+restper+"%)";
	document.getElementById('Words').innerHTML=scoreText;
}

function changeMe(el){
	document.getElementById('Words').innerHTML="";
	var color=el.style.backgroundColor;
	//alert(el.style.height);
	switch(color){
	//FIREFOX
	case "rgb(231, 231, 231)":
		color = "#ff0000";
		break
	case "rgb(255, 0, 0)":
		color = "#00cb00";
		break
	case "rgb(0, 203, 0)":
		color = "#ff0000";
		break
	//INTERNET EXPLORER 
	case "#e7e7e7":
		color = "#ff0000";
		break
	case "#ff0000":
		color = "#00cb00";
		break
	case "#00cb00":
		color = "#ff0000";
		break
	default:
		color = "#E7E7E7";
	}
el.style.backgroundColor = color;
}
function answerMe(num){
	document.getElementById('Words').innerHTML=description[num];
	//alert(el.style.height);
	
}
