function makeMenu(){
	var a = document.getElementsByTagName('div');
	for(i = 0; i < a.length; i++){
		o = a[i];			
		if(o.className == 'menuitemoff'){
			o.onmouseover = function(){
				this.className = 'menuitemon';
			}
			o.onmouseout = function(){
				this.className = 'menuitemoff';
			}
		}
	}
}

var a = 0
var b = 0
var c = 0
var d = 0
var e = 0
tot = 0

function one()  { 
	a=1
	}

function two()  {
	b=1
	}

function three()  { 
	c=1
	}

function four()  { 
	d=1
	}

function five()  { 
	e=1
	}

function oneX() {
	a=0
	}

function twoX() {
	b=0
	}

function threeX() {
	c=0
	}

function fourX() {
	d=0
	}

function fiveX() {
	e=0
	}


function compute(form) {
	tot = (a + b + c + d + e )

	if (tot == 0)
	{alert("You scored " + tot  + ". You need a shower, because you stink! Try again if you want.")}

	if (tot == 1 || tot == 2)
	{alert("You scored " + tot + ". You're not a villain at all, try harder next time.")}

	if (tot == 3 || tot == 4)
	{alert("You scored " + tot + ". Evil, but not evil enough. Keep trying.")}

	 if (tot == 5)
	{alert("You scored " + tot + ". You truly are a Villian!")}
	
	return false;
}
