
currentSelection = null

function flyOver(o) {
	if (o.className!="selectedState") {
		o.className = "overState"
	}
}

function flyOut(o) {
	if (o.className!="selectedState") {
		o.className = "defaultState"
	}
}

function selectMe(o) {
	if (currentSelection != null) {
		currentSelection.className = "defaultState"
	}
	o.className = "selectedState"
	currentSelection = o
}

